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

Search:

Type: Posts; User: STLDude

Page 1 of 32 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    1
    Views
    200

    Re: fatal error LNK1120

    You have this:

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

    void display(int * channels [NUMS])

    See the difference?
  2. Replies
    5
    Views
    232

    Re: Get maximum memory usage of My App

    Memory Management Functions on MSDN may be a good start.
  3. Replies
    7
    Views
    322

    Re: Not sure what kind of code to write

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

    Why?
  5. Thread: Pseudopointers

    by STLDude
    Replies
    55
    Views
    1,814

    Re: Pseudopointers

    Please stop feeding the troll.
  6. Replies
    6
    Views
    325

    Re: Dimensions of JPEG in Memory ?

    You can always go to http://www.wotsit.org/ which has large description, etc for various file formats.
  7. Replies
    2
    Views
    355

    Re: Best source code editor component (MFC)?

    Possibly scintilla.org.
  8. Replies
    9
    Views
    676

    Re: Big O Notion Help for project

    Give us your answers first and then we can help you out.
  9. Replies
    5
    Views
    3,971

    Re: How can I hook CreateFile Api?

    detours may be usefull http://research.microsoft.com/apps/mobile/showpage.aspx?page=/en-us/projects/detours/
  10. Replies
    8
    Views
    635

    Re: Error C2079: uses undefined class

    Lookup circular header inclusion and forward declaration.

    http://www.cplusplus.com/forum/general/125/
    http://en.wikipedia.org/wiki/Forward_declaration
  11. Replies
    5
    Views
    965

    Re: ChoosePixelFormat NULL handle?

    Have you checked in the debugger that m_hdc variable is a valid handle and not NULL?
  12. Replies
    51
    Views
    3,170

    Re: Interview Questions

    Are you advocating to actually make virtual destructor for any class even if it does not have any other virtual methods?
  13. Re: extract the file name and extension from a .txt

    If you are not everse to using boost, look it up http://www.boost.org/doc/libs/1_50_0/libs/filesystem/doc/index.htm. There are functions to handle path manipulation and in a cross platform way.
  14. Replies
    49
    Views
    1,345

    Re: Tutor a Teenager?

    This has several books suggestions: http://wforl.wordpress.com/C++/
  15. Replies
    49
    Views
    1,345

    Re: Tutor a Teenager?

    I also second python, specifically if learning programming for the first time.
  16. Re: Create a game similar with Triple Town using C++

    Is it very urgent?
  17. Re: PLEASE HELP A NOVICE WITH C++. How do i make this code output to a .txt file?

    What happened to do your best using code tags?
  18. Replies
    9
    Views
    528

    Re: character array please Help!!!

    Why not std::string?


    #include <string>
    // ...
    std::string name = "omshanti";

    or
  19. Replies
    4
    Views
    428

    Re: Embedding Python

    Boost Python
  20. Replies
    2
    Views
    561

    Re: Remote debugging with MSVC 6

    I believe for VC++ 6 the name is MSVCMON.EXE.

    This site has more info on how to set it up.
  21. Replies
    12
    Views
    722

    Re: Singleton Method

    You are right:
  22. Replies
    12
    Views
    722

    Re: Singleton Method

    This will fail in multithreaded environment.
  23. Re: Can anyone remember the breakpoint window in VC++ 6 ?

    Does CTRL-Shift-F9 works?
  24. Re: The best program that can log my network activities

    Wireshark
  25. Replies
    10
    Views
    568

    Re: How easy is it ?

    Would you please stop feeding the troll.
Results 1 to 25 of 797
Page 1 of 32 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width