- Version
- Download 195
- File Size 78.58 KB
- File Count 1
- Create Date March 2, 2016
- Last Updated March 2, 2016
Open PDF File in Visual Basic
Open PDF File in Visual Basic
Source code and a step by step tutorial on how to open a pdf file in visual basic.
Sample code:
Private Sub Command1_Click()
Dim strFile As String
strFile = App.Path & " est.pdf"
ShellExecute 0&, "open", strFile, "", "", MAXIMIZE
End Sub