I having problem how we open a pdf file in vb.
How we open PDF File
Collapse
X
-
Tags: None
-
Originally posted by pradipprjpt83I having problem how we open a pdf file in vb.
System.IO.File. Open("C:\HI.pdf ", System.IO.FileM ode.Open)
If you want to open pdf on your windows form page, in Visual, in toolbox menu choose WebBrowser by double clicking on it, you see a new webbrowser shown on your form page, click on the webbrowser, and go to the proporities panel, in the panel you see the URL Text, then write the pdf path to the URL TextBox.
bye.Comment
-
Originally posted by AtranIf you want to open it use this:
System.IO.File. Open("C:\HI.pdf ", System.IO.FileM ode.Open)
If you want to open pdf on your windows form page, in Visual, in toolbox menu choose WebBrowser by double clicking on it, you see a new webbrowser shown on your form page, click on the webbrowser, and go to the proporities panel, in the panel you see the URL Text, then write the pdf path to the URL TextBox.
bye.
Comment
Comment