How to programmatically get Acrobat Reader to switch to the "Read Mode (Ctrl-H)" mode
Hello.
I'm trying to use OLE Automation for Acrobat Reader in my application on VFP. There are no problems anywhere, but I came across a question that I can not find the answer to: How do I programmatically get Acrobat Reader to enter the "Read Mode (Ctrl-H)" mode?
AdobeApp = createObject ('AcroExch.App')
AdobeDoc = createObject ('AcroExch.AVDoc')
AdobeDoc.open (AdobeFileName, '')
AdobeForm = createObject ('AFormAut.App')
AdobeFields = AdobeForm.fields
AdobeApp.Show
AdobeDoc.BringToFront ()
? go into Read Mode (Ctrl-H)
Thanked in advance for help
