Opening PDF in a specific page inside a Access database

acgrego

New member
Local time
Today, 01:43
Joined
Jun 20, 2003
Messages
7
Hello,

I would like some help to do this:

Opening a local (inside my pc) pdf file in a specific page, with a link within a access database in my pc. Example:
D:\bte\bte28_2003.pdf#page=5
but don't work because do the file is opened in the first page. (I also tried this link on Word Microsoft and don't work)

Still, in access database to create a link to a PDF file inside my pc I must add "#" in name of the file to open.

Example:
#\bte\bte28_2003.pdf#

So, I think there is some kind of conflict with the #.

Does anyone knows how to open a PDF file, in a specific page through a Access link ?

Thanks!

AR
(Sorry my english!)
 
Visual Basic : Linkexecute

HI,

I already found this solution, but I have error while executing. Don't accept tthe "Linkexecute". Comando13 is the name of a text box.

Is missing any library in my VB? Where can I find it to accept the Linkexecute comand? Where is the error? I use Microsoft Access 2000.

Private Sub Comando13_Click()
Dim lngTID As Long

lngTID = Shell("C:\Programas\Adobe\Acrobat 5.0\Acrobat\Acrobat.exe", vbMaximizedFocus)
Comando13.Linkexecute [DocGoTo("d:\bte\bte12_2003.pdf",5)]
End Sub
 

Users who are viewing this thread

Back
Top Bottom