CFormView as ModelDialog Behavour.
-
Hi All, I am having a FormView and i have shown the form View in Menu Click Event. Previously there was a Model Dialog for that Event. The same event is modified to CFormView. My Doubt is. Code ---- CMyDialog dlg; if( dlg.DoModel()== IDOK) { //Some Conditions ...... } The Code will wait untill the CDialog Box is been Closed. The Same behaviour must be applied to CFormView. What is the Process to do. Regards, Uday.
-
Hi All, I am having a FormView and i have shown the form View in Menu Click Event. Previously there was a Model Dialog for that Event. The same event is modified to CFormView. My Doubt is. Code ---- CMyDialog dlg; if( dlg.DoModel()== IDOK) { //Some Conditions ...... } The Code will wait untill the CDialog Box is been Closed. The Same behaviour must be applied to CFormView. What is the Process to do. Regards, Uday.
If you want it to be modal why not simply disable other windows and run a message pump?
Steve
-
If you want it to be modal why not simply disable other windows and run a message pump?
Steve
Hi Steve, Thank you very much for giving Idea. Regards, Uday.