Vet inte hur det är i 97'an men i 2k så finns det ett shell kommando. Tycker att det låter som att ShellExecute skulle lösa problemet.Sv: Starta pdf-fil från Access97?
Shell Function
Runs an executable program and returns a Variant (Double) representing the program's task ID if successful, otherwise it returns zero.
Syntax:
Shell(pathname[,windowstyle])
Hoppas det kan vara till hjälp.Sv: Starta pdf-fil från Access97?
Deklarera funktionen i en modul:
Public Const SW_SHOW = 1
Public Declare Function shellexecute Lib "shell32.dll" Alias "ShellExecuteA" _
(ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, _
ByVal lpParameters As String, ByVal lpDirectory As String, _
ByVal nShowCmd As Long) As Long
Anrop den genom:
Dim hBrowse As Long
hBrowse = shellexecute(Forms!Formulärnamn.hwnd, "open", sökväg_till_pdf-fil, "", "", SW_SHOW)
/Johan