Re: [RESOLVED] menuItemExecute
Quote:
Originally Posted by
vijy
Am trying to execute a menu item " Documents " in the Adobe Profeesional 7.0
Code:
Dim Ok as boolean
ok = AcrobatApp.MenuItemExecute("DigSig:ToolsDiff")
This not working..
This ok return false only at all time..
Can anybody say how to execute this menu??
Another possible solution:
Code:
Sub MenuItemExecuteLateBind()
Dim AcroApp As Object
Dim OpenThisDoc As Object
Set OpenThisDoc = CreateObject("AcroExch.PDDoc")
Set AcroApp = CreateObject("AcroExch.App")
'AcroApp.Show
OpenThisDoc.Open "C:\Temp\MyAdobeFile.pdf"
'AcroApp.MenuItemExecute ("Open")
AcroApp.MenuItemExecute ("DigSig:ToolsDiff")
End Sub