Click here to Skip to main content
15,902,189 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalurgent help reqd for fonts !!! Pin
drmzunlimited3-Apr-03 20:28
drmzunlimited3-Apr-03 20:28 
GeneralCTreeCtrl - leaf - Pin
JensB3-Apr-03 19:46
JensB3-Apr-03 19:46 
GeneralRunning Visual C++ executable files in OS/2 Pin
JekYu3-Apr-03 19:39
JekYu3-Apr-03 19:39 
QuestionHow to persist data in a DLL Pin
Ph@ntom3-Apr-03 19:31
Ph@ntom3-Apr-03 19:31 
GeneralWindow title and Complete applicaiton Path Pin
Saqib Razzaq3-Apr-03 18:45
Saqib Razzaq3-Apr-03 18:45 
GeneralRe: Window title and Complete applicaiton Path Pin
KarstenK3-Apr-03 21:28
mveKarstenK3-Apr-03 21:28 
GeneralRe: Window title and Complete applicaiton Path Pin
Cedric Moonen3-Apr-03 21:41
Cedric Moonen3-Apr-03 21:41 
GeneralWindows disabling dialogs after WM_QUIT Pin
Kibble3-Apr-03 16:40
Kibble3-Apr-03 16:40 
This has got to be the most irritating 'feature' of the windows API. not one problem has given me so much trouble, here is how my error catching goes:

[code]
int main(int argc, char ** argv)
{
try
{
CApp Instance;
return Instance.Run();
}
catch(ErrorInfo Error)
{
// build message here
MessageBox(NULL, Message, Title, MB_ICONERROR);
}
return 0;
}
[/code]
it works perfectly up to the .Create method of ATL's CWindowImpl. after that, DestroyWindow gets called, which seems to disable dialogs, which disables the message box. i've debugged it, it goes right over the call without displaying the window, but it does play the sound. is there any way to 'reset' windows before i show the message box?
Generalrealted to new operator. Pin
anju3-Apr-03 16:39
anju3-Apr-03 16:39 
GeneralRe: realted to new operator. Pin
Dave Bryant3-Apr-03 16:52
Dave Bryant3-Apr-03 16:52 
GeneralRe: realted to new operator. Pin
Chintan3-Apr-03 18:01
Chintan3-Apr-03 18:01 
GeneralRe: realted to new operator. Pin
Dave Bryant3-Apr-03 18:06
Dave Bryant3-Apr-03 18:06 
GeneralRe: realted to new operator. Pin
Chintan3-Apr-03 18:34
Chintan3-Apr-03 18:34 
GeneralRe: realted to new operator. Pin
Dave Bryant3-Apr-03 18:37
Dave Bryant3-Apr-03 18:37 
GeneralRe: realted to new operator. Pin
Chintan3-Apr-03 19:01
Chintan3-Apr-03 19:01 
GeneralRe: realted to new operator. Pin
nde_plume4-Apr-03 5:08
nde_plume4-Apr-03 5:08 
GeneralProblem with wincrypt.h Pin
Nick Parker3-Apr-03 16:19
protectorNick Parker3-Apr-03 16:19 
GeneralRe: Problem with wincrypt.h Pin
Zdeslav Vojkovic4-Apr-03 0:33
Zdeslav Vojkovic4-Apr-03 0:33 
GeneralRe: Problem with wincrypt.h Pin
jhwurmbach4-Apr-03 1:30
jhwurmbach4-Apr-03 1:30 
GeneralRe: Problem with wincrypt.h Pin
Zdeslav Vojkovic6-Apr-03 21:07
Zdeslav Vojkovic6-Apr-03 21:07 
GeneralRe: Problem with wincrypt.h Pin
Nick Parker4-Apr-03 3:27
protectorNick Parker4-Apr-03 3:27 
Generalerror RC2135: file not found: MENU Pin
ElizabethC3-Apr-03 13:07
ElizabethC3-Apr-03 13:07 
QuestionCan not find the Dialog resource from .NET Pin
ElizabethC3-Apr-03 12:52
ElizabethC3-Apr-03 12:52 
GeneralCString and WriteFile Pin
andyg.1013-Apr-03 11:39
andyg.1013-Apr-03 11:39 
GeneralRe: CString and WriteFile Pin
John R. Shaw3-Apr-03 12:43
John R. Shaw3-Apr-03 12:43 

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.