Re: Use Dialog instead Window in MFC Problem !
Agha Hadi,
How come you are not using MFC?
AliR.
"AliR" <AliR@online.nospam> wrote in message
news:u7RbrhpRKHA.4048@TK2MSFTNGP05.phx.gbl...
In addition to what Huang stated, what are you going to do in your while
loop?
AliR.
"hadi kazemi" <hadikazemi@discussions.microsoft.com> wrote in message
news:ECCD32D2-0271-49FC-9037-10CEB75D0DC7@microsoft.com...
hi
i use window in my program user interface like this:
[code]
...
ShowWindow( g_hWnd, nCmdShow );
UpdateWindow (g_hWnd) ;
if( FAILED( InitWindow( hInstance, nCmdShow ) ) )
return 0;
hInst = hInstance;
// Main message loop
MSG msg = {0};
while (!Done)
{
...
[/code]
now i want to use dialog instead window and then use :
[code]
...
// ShowWindow( g_hWnd, nCmdShow );
if( FAILED( InitWindow( hInstance, nCmdShow ) ) )
returhn 0;
hInst = hInstance;
// Main message loop
MSG msg = {0};
BOOL Done = FALSE;
DialogBox(g_hInst, MAKEINTRESOURCE(IDD_DIALOG2), g_hWnd, AboutDlgProc);
while (!Done)
{
...
[/code]
but my program dont run code after DialogBox ! now what i do ?