Click here to Skip to main content
15,896,348 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to track filesystem changes Pin
klingens6-May-06 19:32
klingens6-May-06 19:32 
GeneralRe: How to track filesystem changes Pin
Maxwell Chen6-May-06 19:36
Maxwell Chen6-May-06 19:36 
GeneralRe: How to track filesystem changes Pin
klingens6-May-06 19:40
klingens6-May-06 19:40 
GeneralRe: How to track filesystem changes Pin
Maxwell Chen6-May-06 20:13
Maxwell Chen6-May-06 20:13 
AnswerRe: How to track filesystem changes Pin
Justin Tay6-May-06 20:04
Justin Tay6-May-06 20:04 
AnswerRe: How to track filesystem changes Pin
Michael Dunn6-May-06 21:04
sitebuilderMichael Dunn6-May-06 21:04 
AnswerRe: How to track filesystem changes Pin
Hamid_RT7-May-06 18:27
Hamid_RT7-May-06 18:27 
Questionthread with Message loop Pin
Jim Crafton6-May-06 17:04
Jim Crafton6-May-06 17:04 
If I create a thread with code like this:

while ( true ) {
	if ( PeekMessage( &msg, NULL, 0, 0, PM_REMOVE ) ) {
		//do something with msg
		switch ( msg.message ) {
			case WM_QUIT : {
				return;
			}
			break;	
		}
		
		TranslateMessage(&msg); 

		DispatchMessage(&msg);
	}

}


Does this automatically create a hidden window (I'd prefer not to have this)? Are there any downsides to doing this? Somewhere I recall reading that this could potentially be problematic.


¡El diablo está en mis pantalones! ¡Mire, mire!

Real Mentats use only 100% pure, unfooled around with Sapho Juice(tm)!

SELECT * FROM User WHERE Clue > 0
0 rows returned

Save an Orange - Use the VCF!
AnswerRe: thread with Message loop Pin
Justin Tay6-May-06 17:19
Justin Tay6-May-06 17:19 
GeneralRe: thread with Message loop Pin
Jim Crafton6-May-06 17:22
Jim Crafton6-May-06 17:22 
GeneralRe: thread with Message loop Pin
Justin Tay6-May-06 17:29
Justin Tay6-May-06 17:29 
GeneralRe: thread with Message loop Pin
Jim Crafton6-May-06 17:50
Jim Crafton6-May-06 17:50 
GeneralRe: thread with Message loop Pin
Jörgen Sigvardsson6-May-06 23:11
Jörgen Sigvardsson6-May-06 23:11 
GeneralRe: thread with Message loop Pin
Stephen Hewitt6-May-06 19:39
Stephen Hewitt6-May-06 19:39 
GeneralRe: thread with Message loop Pin
Ryan Binns7-May-06 13:50
Ryan Binns7-May-06 13:50 
AnswerRe: thread with Message loop Pin
Ravi Bhavnani7-May-06 11:47
professionalRavi Bhavnani7-May-06 11:47 
QuestionGetting allocated memory by a process!!! Pin
ThiagoFragoso6-May-06 10:17
ThiagoFragoso6-May-06 10:17 
AnswerRe: Getting allocated memory by a process!!! Pin
Osama E. Adly7-May-06 6:18
Osama E. Adly7-May-06 6:18 
QuestionULARGE_INTEGER Pin
G_S6-May-06 9:46
G_S6-May-06 9:46 
AnswerRe: ULARGE_INTEGER Pin
Maxwell Chen6-May-06 13:55
Maxwell Chen6-May-06 13:55 
QuestionMainFraim - Child - file extansion Pin
tbrake6-May-06 9:38
tbrake6-May-06 9:38 
QuestionIntellisense question - function headers Pin
Phil Francis6-May-06 8:34
Phil Francis6-May-06 8:34 
AnswerRe: Intellisense question - function headers Pin
Maxwell Chen6-May-06 8:45
Maxwell Chen6-May-06 8:45 
GeneralRe: Intellisense question - function headers Pin
Phil Francis6-May-06 9:10
Phil Francis6-May-06 9:10 
GeneralRe: Intellisense question - function headers Pin
Maxwell Chen6-May-06 9:13
Maxwell Chen6-May-06 9:13 

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.