AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Programmierung allgemein Win32/Win64 API (native code) Delphi AcroPDF - How can i hide navigation panel buttons
Thema durchsuchen
Ansicht
Themen-Optionen

AcroPDF - How can i hide navigation panel buttons

Ein Thema von haidomingo · begonnen am 22. Nov 2009 · letzter Beitrag vom 23. Nov 2009
Antwort Antwort
haidomingo

Registriert seit: 22. Jul 2009
23 Beiträge
 
#1

AcroPDF - How can i hide navigation panel buttons

  Alt 22. Nov 2009, 16:23
How can i hide navigation panel buttons?
Is there a solution to Delphi for the problem described here?
see http://forums.adobe.com/thread/301715

Thanks
  Mit Zitat antworten Zitat
Benutzerbild von Bernhard Geyer
Bernhard Geyer

Registriert seit: 13. Aug 2002
17.171 Beiträge
 
Delphi 10.4 Sydney
 
#2

Re: AcroPDF - How can i hide navigation panel buttons

  Alt 22. Nov 2009, 19:44
Which solution? AFAIK this can only be done by embedded Javascript in PDF. No external API available for doing this.
Windows Vista - Eine neue Erfahrung in Fehlern.
  Mit Zitat antworten Zitat
haidomingo

Registriert seit: 22. Jul 2009
23 Beiträge
 
#3

Re: AcroPDF - How can i hide navigation panel buttons

  Alt 23. Nov 2009, 07:29
Zitat von Bernhard Geyer:
Which solution? AFAIK this can only be done by embedded Javascript in PDF. No external API available for doing this.

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;
  Mit Zitat antworten Zitat
Antwort Antwort


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 18:37 Uhr.
Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz