How to convert Modal dialog to modeless dialog?
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
Hi, Can any one send code to convert Modal dialog to modeless dialog & converting modeless dialog to modal dialog. Thanks, Venkat
-
Hi, Can any one send code to convert Modal dialog to modeless dialog & converting modeless dialog to modal dialog. Thanks, Venkat
Instead of the DoModal function, Call Create(), ShowWindow() function. Remeber, the CDialog object should not be local variable if you are calling Create() function. Other wise, the window will be destroyed when the object goes out of scope.
nave [My Articles] [My Blog]
-
Hi, Can any one send code to convert Modal dialog to modeless dialog & converting modeless dialog to modal dialog. Thanks, Venkat