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

open save file dialog

Guest
Dec 01, 2016 Dec 01, 2016

I am developing a plug-in using acrobat sdk with visual c++ 2010. I want to using SaveFileDialog save file. How to doing it?

i hope you'll get a good answer.

TOPICS
Acrobat SDK and JavaScript
401
Translate
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 ,
Dec 02, 2016 Dec 02, 2016
LATEST

I may be wrong but I think SaveFileDialog is a managed method from .NET. It is best to forget everything you know about .NET methods because there is a world of pain waiting for you if you try to squeeze them into the unmanaged (C++) world of Acrobat.

Instead you need to find and use the C++ methods of the unmanaged Windows API. There are many similarities, but not always exact equivalents. Unfortunately it is an enormous API which has evolved over many years and there is a lot to learn.

Microsoft want non-managed code to use the "Common Item Dialog". I don't like this and use the old methods such as GetSaveFileName.

Translate
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