CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: STLDude

Page 1 of 33 1 2 3 4

Search: Search took 0.39 seconds.

  1. Re: How to get the following Mode 13 H C Code to work in Visual Studio 2015 Pro ???

    I really don't think that VGA Mode 13 will work under windows. That kind of code was used in DOS days, which allowed you access to video memory directly, and was located at 0xA0000000 address....
  2. Re: Overload WriteProfileXXX/GetProfileXXX to store settings in XML instead of regist

    I have used TinyXML as my xml reader and writer. It does not have validation built in, but it's small, fast, fairly efficient and easy to add to your project.

    I want to make couple comments...
  3. Replies
    3
    Views
    3,190

    Re: error LNK2001: unresolved external symbol

    And where in cpp you defined those static variables? You only declared in header and not defined them anywhere, that's why the linker is complaining, since it can not find definiton for those static...
  4. Replies
    25
    Views
    12,399

    Re: Problem with Visual C++ on a new computer

    PC applications have no approval process, you can create and publish anyway you see fit.
  5. Re: [RESOLVED] ambiguous behaviour of a class template with specialised function

    Original Post
  6. Re: Code to measure CPU usage returns inconsistent results for overclocked CPU

    Or play some games.
  7. Re: Is it possible to switch from release- to debug-mode ...

    It is possible that you hit this Checked Iterators, which can really slow down stl containers.
  8. Replies
    11
    Views
    3,017

    Re: How to create a setup file for an exe.

    Or free Inno Setup.
  9. Replies
    4
    Views
    1,253

    Re: Thread/Core affinity

    Maybe this Process Explorer.
  10. Replies
    8
    Views
    1,822

    Re: global char type array initializing problem

    There is no "might", the snippet is THE ACTUAL C++ STANDARD text.
  11. Replies
    8
    Views
    1,822

    Re: global char type array initializing problem

    No, it's C/C++ standard:
  12. Thread: PostMessage

    by STLDude
    Replies
    24
    Views
    20,016

    Re: PostMessage

    Yes, you can add variable inside case statement, add braces there to create local scope.
  13. Re: How can I get path to the recycle bin folder for a specific drive?

    Have you seen this: http://blogs.msdn.com/b/oldnewthing/archive/2008/09/18/8956382.aspx
  14. Replies
    2
    Views
    5,075

    Re: Chart Controls Visual Studio 2013

    Have you tried Chart FX web site to see if they have updated version? https://www.softwarefx.com/chartfx/
  15. Replies
    8
    Views
    4,238

    Re: OpenGL - 2D Movement with respondtokeypress

    I don't think you do understand c++.


    void respondtokeypress(char a)
    {
    a +=0.1;
    a -=0.1;
    b +=0.1;
    b -=0.1;
    glutPostRedisplay();
  16. Replies
    26
    Views
    8,690

    Re: how auto size a control?

    I just wanted to emphasize this, since it's right on the money.
  17. Replies
    44
    Views
    16,905

    Re: [win32] Send bitmap over socket

    Why would anybody help him with that attitude?
  18. Replies
    6
    Views
    1,820

    Re: Ioctl_ide_pass_through

    You could edit your original post and fix up code tags, so it will be easier to read for future readers.
  19. Re: Issue with DirectDraw switching from 16 to 32 Bpp

    you can convert images between formats. Going from like rgb555 to rgb888 it is not that hard. It takes some CPU cycles. You should be able to google it how to convert one pixel to another. IOW,...
  20. Re: Issue with DirectDraw switching from 16 to 32 Bpp

    Why don't you do it offline, then it won't make a difference how much time or how much resources it took
  21. Replies
    10
    Views
    2,233

    Re: Share-pointer and void

    class Example
    {
    public:
    virtual MyClassPtr DoSomething()
    {
    return new MyClass();
    }

    };
  22. Replies
    1
    Views
    1,170

    Re: fatal error LNK1120

    You have this:

    void display(int channels [NUMS]); /* function prototype */
    and:

    void display(int * channels [NUMS])

    See the difference?
  23. Replies
    5
    Views
    1,848

    Re: Get maximum memory usage of My App

    Memory Management Functions on MSDN may be a good start.
  24. Replies
    7
    Views
    1,445

    Re: Not sure what kind of code to write

    Congrats, feels good does it.
  25. Re: could anyone write following programms.....plsss

    Why?
Results 1 to 25 of 818
Page 1 of 33 1 2 3 4





Click Here to Expand Forum to Full Width

Featured