Click here to Skip to main content
15,900,254 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Printing Pin
#realJSOP9-Feb-06 9:31
professional#realJSOP9-Feb-06 9:31 
AnswerRe: Printing Pin
Shog99-Feb-06 11:45
sitebuilderShog99-Feb-06 11:45 
AnswerRe: Printing Pin
Michael Dunn9-Feb-06 10:14
sitebuilderMichael Dunn9-Feb-06 10:14 
GeneralRe: Printing Pin
#realJSOP10-Feb-06 5:26
professional#realJSOP10-Feb-06 5:26 
GeneralRe: Printing Pin
#realJSOP10-Feb-06 10:13
professional#realJSOP10-Feb-06 10:13 
AnswerRe: Printing Pin
Stan Shannon9-Feb-06 13:54
Stan Shannon9-Feb-06 13:54 
QuestionHow to disable all controls in the dialog box Pin
Eugene Pustovoyt9-Feb-06 8:39
Eugene Pustovoyt9-Feb-06 8:39 
AnswerRe: How to disable all controls in the dialog box Pin
Andy Moore9-Feb-06 9:14
Andy Moore9-Feb-06 9:14 
Do something like this:

BOOL b = EnumChildWindows( hWndDlg, EnumFunc, NULL );


BOOL CALLBACK EnumFunc( HWND hwnd, LPARAM lParam )
{
   EnableWindow( hwnd, FALSE ); 
}


Andy


Human beings were not meant to sit in little cubicles staring at computer screens all day, filling out useless forms and listening to eight different bosses drone on about about mission statements. -- Peter Gibbons
QuestionRe: How to disable all controls in the dialog box Pin
David Crow9-Feb-06 9:15
David Crow9-Feb-06 9:15 
AnswerRe: How to disable all controls in the dialog box Pin
#realJSOP9-Feb-06 10:09
professional#realJSOP9-Feb-06 10:09 
AnswerRe: How to disable all controls in the dialog box Pin
jhwurmbach10-Feb-06 3:27
jhwurmbach10-Feb-06 3:27 
QuestionMultithreaded Programming Pin
RanjanShrestha9-Feb-06 8:07
RanjanShrestha9-Feb-06 8:07 
AnswerRe: Multithreaded Programming Pin
Rage9-Feb-06 8:13
professionalRage9-Feb-06 8:13 
GeneralRe: Multithreaded Programming Pin
RanjanShrestha9-Feb-06 8:17
RanjanShrestha9-Feb-06 8:17 
GeneralRe: Multithreaded Programming Pin
Rage9-Feb-06 8:31
professionalRage9-Feb-06 8:31 
Questiona little output problem Pin
Peter Charlesworth9-Feb-06 7:46
Peter Charlesworth9-Feb-06 7:46 
AnswerRe: a little output problem Pin
Rage9-Feb-06 8:15
professionalRage9-Feb-06 8:15 
QuestionGetting CXX0030: Error: expression cannot be evaluated Pin
zahid_ash9-Feb-06 7:34
zahid_ash9-Feb-06 7:34 
QuestionRe: Getting CXX0030: Error: expression cannot be evaluated Pin
David Crow9-Feb-06 7:42
David Crow9-Feb-06 7:42 
AnswerRe: Getting CXX0030: Error: expression cannot be evaluated Pin
Rage9-Feb-06 7:44
professionalRage9-Feb-06 7:44 
Questionminimizing or hiding the DOS window in VC++ exe application Pin
sashabkvs9-Feb-06 6:32
sashabkvs9-Feb-06 6:32 
AnswerRe: minimizing or hiding the DOS window in VC++ exe application Pin
Rage9-Feb-06 7:11
professionalRage9-Feb-06 7:11 
QuestionRe: minimizing or hiding the DOS window in VC++ exe application Pin
David Crow9-Feb-06 7:12
David Crow9-Feb-06 7:12 
QuestionCatch USB-Events Pin
BruteF0rce9-Feb-06 5:41
BruteF0rce9-Feb-06 5:41 
AnswerRe: Catch USB-Events Pin
Dr. Russell9-Feb-06 6:31
Dr. Russell9-Feb-06 6:31 

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.