Tag Archives: HideToolbar

DDE : HideToolbar

The toolbar of the Acrobat application is hidden.Only Acrobat can be used. It is not possible to use it with Acrobat Reader. Syntax [HideToolbar()] Returns true The toolbar is hidden 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 hidden. Please confirm the test by the step execution with F8 key. Sub DDE_HideToolbar()    Dim lChanNo     As Long ‘DDE channel number    Dim strFilePath As String ‘The full path of PDF file    ‘A double quotation mark is added for blank starting full path.    strFilePath = “””C:\PDF\iac_developer_guide.pdf”””        ‘The Acrobat application is Started.    Shell “C:\Program Files\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe”    ‘Open … Continue reading DDE : HideToolbar