i am stuck, can you control adobe acrobat reader to jump to a certain page with visual basic 6.0 (pro). if so please tell me how.
thankyou
[Edited by Jamagei on 07-14-2000 at 10:05 AM]
Printable View
i am stuck, can you control adobe acrobat reader to jump to a certain page with visual basic 6.0 (pro). if so please tell me how.
thankyou
[Edited by Jamagei on 07-14-2000 at 10:05 AM]
I am only doing this 'cos i am desparate!. this moves me to the top of the list haha
You could use it to send Control Page Down (the keyboard command to get Adobe Reader to go down) so that it'll move down.
I just tried this code:
SunnyCode:Option Explicit
Private Sub Command1_Click()
AppActivate ("Acrobat Reader - [ReadMe.pdf]")
SendKeys "^{pgdn}"
End Sub
Private Sub Form_Load()
Shell ("C:\Program Files\Adobe\Acrobat 4.0]Reader\acrord32.exe")
End Sub