|
|
|
| Title | Open a PDF file in an external Adobe Reader process in Visual Basic .NET |
| Description | This example shows how to open a PDF file in an external Adobe Reader process in Visual Basic .NET. |
| Keywords | PDF file, Adobe, open PDF file, Adobe Reader, Adobe Acrobat, Acrobat, Visual Basic .NET, VB.NET |
| Categories | Windows, VB.NET, Files and Directories |
|
|
|
Simply call System.Diagnostics.Process.Start to "execute" the file. If Adobe Reader is installed, it should open the file.
|
|
System.Diagnostics.Process.Start(txtFile.Text)
|
| |
|
| |
|
|