CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: multithread

  1. #1
    Join Date
    Oct 2004
    Posts
    38

    multithread

    Until here I have used only this rotine in order to make my program work properly

    while( ::PeekMessage( &msg, NULL, 0, 0, PM_REMOVE ) )
    {
    if( !::IsDialogMessage( g_hMDIClient, &msg ) )
    {
    :: TranslateMessage( &msg );
    :: DispatchMessage( &msg );
    }
    }

    but now it is not enough enymore and I need to start using multithread...
    As I have never done a multithread program before and I want not to start over but make my program multithread I ask if anyone knows a good source (tutorial) that could help me!?

  2. #2
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652

    Re: multithread

    [ Moved thread ]

  3. #3
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured