How to exit from aplication ?
-
you know how to exit from aplication ? i need something like : PostQuitMessage(125); :)
Bravoone
-
you know how to exit from aplication ? i need something like : PostQuitMessage(125); :)
Bravoone
-
you know how to exit from aplication ? i need something like : PostQuitMessage(125); :)
Bravoone
what kind of application ? Console ? Win32, MFC ? .NET ?
TOXCCT >>> GEII power
[VisualCalc 3.0 updated ][Flags Beginner's Guide new! ]
-
you know how to exit from aplication ? i need something like : PostQuitMessage(125); :)
Bravoone
#include ... exit(0); Nobody can give you wiser advice than yourself. - Cicero
-
#include ... exit(0); Nobody can give you wiser advice than yourself. - Cicero
in console, yes, but there are better ways otherwise. that's why i'm waiting for his answer...
TOXCCT >>> GEII power
[VisualCalc 3.0 updated ][Flags Beginner's Guide new! ]
-
in console, yes, but there are better ways otherwise. that's why i'm waiting for his answer...
TOXCCT >>> GEII power
[VisualCalc 3.0 updated ][Flags Beginner's Guide new! ]
Yes, you're right. Since he is not specific about the question, I gave a more generic answer, which is applicable into MFC/Console :D
Nobody can give you wiser advice than yourself. - Cicero
-
Yes, you're right. Since he is not specific about the question, I gave a more generic answer, which is applicable into MFC/Console :D
Nobody can give you wiser advice than yourself. - Cicero
yes mfc and thanks all !
Bravoone
-
yes mfc and thanks all !
Bravoone
Bravoone_2006 wrote:
yes mfc
then Call
CDialog::EndDialog(IDOK)
(orIDCANCEL
)
TOXCCT >>> GEII power
[VisualCalc 3.0 updated ][Flags Beginner's Guide new! ]
-
yes mfc and thanks all !
Bravoone
Or
SendMessage(WM_CLOSE);
WhiteSky