Model Dialog:- u have to respond them before processing further.
Suppose a Dialog Class CMyDlg;
CMyDlg myDlg;
myDlg.DoModel()
DoModel is use for Mode dialog
Modelesss Dialog:-These stay on the screen u can respond them any time ,they donot stop u for further process.
CreateDialog Method is use for Modeless Dialog.
how to convert Model dialog in Modelless dialog.
Model Dialog in place of DoModel() use Create() and showWindow () method create but Object of Dialog class should not be local else it will b crush after moving out of scope.
Suppose a Dialog Class CMyDlg;
CMyDlg myDlg;
myDlg.DoModel()
DoModel is use for Mode dialog
Modelesss Dialog:-These stay on the screen u can respond them any time ,they donot stop u for further process.
CreateDialog Method is use for Modeless Dialog.
how to convert Model dialog in Modelless dialog.
Model Dialog in place of DoModel() use Create() and showWindow () method create but Object of Dialog class should not be local else it will b crush after moving out of scope.
Comments
Post a Comment