Im trying to do employee database using vb6.0, problem is that, is it possible that after clicking a command button this will call a PDF file...
the Scenario is this:
[command button]
""""""""""""""""""""""
"VIEW JOB DESCRIPTION"
""""""""""""""""""""""
[after pressing this will call/fetch the specific job description of the employee and display it]
to start with here's the code:
If IsNull(rs(6)) Then
MsgBox ("No Job Description Entered")
Else
fname = rs(6)
MsgBox (fname)
End If
End Sub
Note: the PDF file is a hyperlink to MS Access ...
Thanxz...