Tag Archives: ShowToolbar

DDE : ShowToolbar

The toolbar of the Acrobat application is displayed.Only Acrobat can be used. It is not possible to use it with Acrobat Reader. Syntax [ShowToolbar()] Returns true The toolbar is shown successfully. false Otherwise. Notes: The return value cannot be acquired with DDE of VBA of Excel. Sample: VBA of Excel The toolbar of the Acrobat application is displayed. Please confirm the test by the step execution with F8 key. Sub DDE_ShowToolbar()  Dim lChanNo As Long ‘DDE channel number  ‘A double quotation mark is added for blank starting full path.  Const CON_PDF_PATH = “””E:\Test01.pdf””” ‘The Acrobat application is Started.  Shell “C:\Program Files\Adobe\Acrobat 7.0\Acrobat\Acrobat.exe”  ‘Open of DDE channel  lChanNo = DDEInitiate(“Acroview”, “Control”) … Continue reading DDE : ShowToolbar