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

Search:

Type: Posts; User: unnamed

Search: Search took 0.07 seconds.

  1. Replies
    3
    Views
    1,076

    Re: IShellFolder error.

    I guess the stack space is exhausted....I recommend you to put the CoCreateInstance stuff inside a seperate thread so that it will get a fresh stack to play with.
  2. Replies
    2
    Views
    1,009

    Re: Set window text

    If you want to send text to an application which is created by yourself refer this article:

    http://www.codeguru.com/cpp/w-p/system/sharedmemory/article.php/c2879

    Or if you want send to an ...
  3. Replies
    18
    Views
    2,490

    Re: Button functions

    Double click on the button and an event handler will be created by the Visual Studio.
  4. Replies
    18
    Views
    2,490

    Re: Button functions

    switch(rand() % 5)
    {
    case 1: //// show the first set
    break;

    case 2: //// show the second set
    break;

    case 3: //// show the fourth set
    break;
  5. Replies
    18
    Views
    2,490

    Re: Button functions

    If you want different contents at different clicks, why can't you consider (rand() % UB); Where 'UB' is the upper bound.
  6. Replies
    2
    Views
    7,484

    Re: HRESULT to string ??

    Tried FormatMessage()?
  7. Replies
    6
    Views
    1,040

    Re: noob needs help

    Your default constructor is not allocating memory for scores variable.
  8. Replies
    6
    Views
    1,040

    Re: noob needs help

    Compiler will create a default constructor in case if you dont specified one.
  9. Re: Comment retrieve msg from CListCtrl dynamicaly created?

    Hello,



    Does it mean your dialog dont have IDC_LIST2 ?


    Regards,
    John,
    http://www.simpletools.co.in
  10. Replies
    6
    Views
    12,460

    Re: Tooltips on CWnd Derived Class

    The link points to an invalid post.

    Regards,
    John,
    http://www.simpletools.co.in
  11. Thread: Socket help

    by unnamed
    Replies
    4
    Views
    724

    Re: Socket help

    Will this be a web survey or will the survey get embedded into a software?
  12. Replies
    8
    Views
    1,339

    Re: Keyboard filtering

    Sorry, I had OnKeyDown in my mind.
  13. Replies
    8
    Views
    1,339

    Re: Keyboard filtering

    Try subclassing the edit control and handle OnSysKeyDown().

    Regards,
    John
    http://www.simpletools.co.in
Results 1 to 13 of 13





Click Here to Expand Forum to Full Width

Featured