![]() |
AcroPDF - How can i hide navigation panel buttons
How can i hide navigation panel buttons?
Is there a solution to Delphi for the problem described here? see ![]() Thanks |
Re: AcroPDF - How can i hide navigation panel buttons
Which solution? AFAIK this can only be done by embedded Javascript in PDF. No external API available for doing this.
|
Re: AcroPDF - How can i hide navigation panel buttons
Zitat:
Delphi-Quellcode:
procedure HideAcrobatLeftPanel;
begin with TRegistry.Create do try RootKey := HKEY_CURRENT_USER; if not KeyExists('\Software\Adobe\Acrobat Reader\9.0\AVGeneral\cDockables') then begin CreateKey('\Software\Adobe\Acrobat Reader\9.0\AVGeneral\cDockables'); CloseKey; end; if OpenKey('\Software\Adobe\Acrobat Reader\9.0\AVGeneral\cDockables', False) then begin WriteInteger('bExternalTabs',0); CloseKey; end; finally Free; end; end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 09:00 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz