Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I used the following method to cancel the serializing process:
void CMyAppDoc::Serilize(CArchive &ar) { if (// Something goes wrong) { ar.abort(); return; } }
But it always cause an exception. Any idea?
Thank you masters!