Click here to Skip to main content
15,917,321 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: NT/Win2K/XP Maximum File Size Pin
xxhimanshu4-Feb-03 2:06
xxhimanshu4-Feb-03 2:06 
GeneralRe: NT/Win2K/XP Maximum File Size Pin
Abbas_Riazi4-Feb-03 4:06
professionalAbbas_Riazi4-Feb-03 4:06 
GeneralRe: NT/Win2K/XP Maximum File Size Pin
Glynn5-Feb-03 1:16
Glynn5-Feb-03 1:16 
GeneralRe: NT/Win2K/XP Maximum File Size Pin
Mike Nordell5-Feb-03 4:05
Mike Nordell5-Feb-03 4:05 
GeneralRe: NT/Win2K/XP Maximum File Size Pin
Mike Nordell5-Feb-03 0:34
Mike Nordell5-Feb-03 0:34 
GeneralUpdate AppName in TaskBar Pin
leander4-Feb-03 1:25
leander4-Feb-03 1:25 
GeneralRe: Update AppName in TaskBar Pin
Abbas_Riazi4-Feb-03 4:18
professionalAbbas_Riazi4-Feb-03 4:18 
GeneralRe: Update AppName in TaskBar Pin
leander4-Feb-03 4:52
leander4-Feb-03 4:52 
I have try it, but it doesn't works. (And I must put a break after the SetWindowText( szPercent ); because I must give back CPU time to my algorithm.

My code seem like this :
void BigFunction()
{
      for(i=0; i<ui32NbLoop; i++)
      {
            // Make lot of calculation
            ....

            // Call to the function which Set the Application Title and Translate some messages.
            SetWindowsTile();
      }
}

void SetWindowsTile()
{
     // Translate message
     while (true)
     {
 	ui32GotMsg = ::PeekMessage( &message, NULL, 0U, 0U, PM_REMOVE | PM_NOYIELD);
	if (ui32GotMsg != 0)
	{
		// Translate and dispatch les messages
		::TranslateMessage( &message );
		::DispatchMessage( &message );
	}
	else
	{
		break; // Or Return;
	}      
     }
}

GeneralIntefacing a database with ANSI C++ Pin
Jerome Conus4-Feb-03 1:07
Jerome Conus4-Feb-03 1:07 
GeneralRe: Intefacing a database with ANSI C++ Pin
markkuk4-Feb-03 1:22
markkuk4-Feb-03 1:22 
GeneralRe: Intefacing a database with ANSI C++ Pin
Jerome Conus4-Feb-03 1:27
Jerome Conus4-Feb-03 1:27 
GeneralRe: Intefacing a database with ANSI C++ Pin
markkuk4-Feb-03 5:47
markkuk4-Feb-03 5:47 
GeneralRe: Intefacing a database with ANSI C++ Pin
karl_w4-Feb-03 2:21
karl_w4-Feb-03 2:21 
GeneralRe: Intefacing a database with ANSI C++ Pin
Jerome Conus4-Feb-03 3:32
Jerome Conus4-Feb-03 3:32 
GeneralSHBrowseForFolder (Can we get more control over it?) Pin
Anand Vinod4-Feb-03 0:35
Anand Vinod4-Feb-03 0:35 
GeneralRe: SHBrowseForFolder (Can we get more control over it?) Pin
Abbas_Riazi4-Feb-03 4:34
professionalAbbas_Riazi4-Feb-03 4:34 
GeneralRe: SHBrowseForFolder (Can we get more control over it?) Pin
Anand Vinod4-Feb-03 18:35
Anand Vinod4-Feb-03 18:35 
GeneralRe: SHBrowseForFolder (Can we get more control over it?) Pin
Abbas_Riazi5-Feb-03 0:24
professionalAbbas_Riazi5-Feb-03 0:24 
GeneralSubitem images in listview with backgroundimage Pin
Onkie4-Feb-03 0:14
Onkie4-Feb-03 0:14 
QuestionHow to stop VC++ .NET compiler after an error? Pin
mireks3-Feb-03 23:55
mireks3-Feb-03 23:55 
AnswerRe: How to stop VC++ .NET compiler after an error? Pin
Rickard Andersson204-Feb-03 0:52
Rickard Andersson204-Feb-03 0:52 
GeneralRe: How to stop VC++ .NET compiler after an error? Pin
mireks4-Feb-03 1:33
mireks4-Feb-03 1:33 
GeneralRe: How to stop VC++ .NET compiler after an error? Pin
Joan M4-Feb-03 4:11
professionalJoan M4-Feb-03 4:11 
GeneralRe: How to stop VC++ .NET compiler after an error? Pin
mireks4-Feb-03 4:59
mireks4-Feb-03 4:59 
GeneralRe: How to stop VC++ .NET compiler after an error? Pin
Rickard Andersson204-Feb-03 4:57
Rickard Andersson204-Feb-03 4:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.