Override afx msg box (pop up)
-
The software I am coding uses AfxThrowArchiveException(CArchive::none) to undo changes made by partially loading a document into the program. However, another afx message stating "Failed to open document." pops up and the operator has to again click OK on the dialog. Is there anyway to override this second message box from popping up?
-
The software I am coding uses AfxThrowArchiveException(CArchive::none) to undo changes made by partially loading a document into the program. However, another afx message stating "Failed to open document." pops up and the operator has to again click OK on the dialog. Is there anyway to override this second message box from popping up?
You could override CDocument::ReportSaveLoadException() in your document class and do something more appropriate (like not calling AfxMessageBox(), logging the error, etc). Mark
Mark Salsbery Microsoft MVP - Visual C++ :java: