• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

C#.net opened app before close event

New Here ,
Sep 22, 2020 Sep 22, 2020

Copy link to clipboard

Copied

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?

TOPICS
Acrobat SDK and JavaScript

Views

275

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 23, 2020 Sep 23, 2020

Copy link to clipboard

Copied

There are no events for COM programming in Acrobat. You would need to write a C++ plug-in for them.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 25, 2020 Sep 25, 2020

Copy link to clipboard

Copied

LATEST

Thanks

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines