Question
C#.net opened app before close event
I wrote a winform app that opens a pdf file using Acrobak SDK. basicly this is my app:
mApp = new AcroAppClass();
avDoc = new AcroAVDocClass();
String sourceFileStr = @"sample.pdf";
avDoc.Open(sourceFileStr, "");
pdDoc = (CAcroPDDoc)avDoc.GetPDDoc();
mApp.Show();
I am trying to catch the event before closing the opened application window or even after close. I couldn't find a way to to so. Any hints please?
