How we open PDF File

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pradipprjpt83
    New Member
    • May 2007
    • 1

    How we open PDF File

    I having problem how we open a pdf file in vb.
  • Dököll
    Recognized Expert Top Contributor
    • Nov 2006
    • 2379

    #2
    Originally posted by pradipprjpt83
    I having problem how we open a pdf file in vb.
    Let me go noodle with this one, see what I can gather, if no-one has gotten to it. Fetched the web and "nada" popped up, anything concrete anyway...

    In a bit!

    Comment

    • Atran
      Contributor
      • May 2007
      • 319

      #3
      Originally posted by pradipprjpt83
      I having problem how we open a pdf file in vb.
      If 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

      • Dököll
        Recognized Expert Top Contributor
        • Nov 2006
        • 2379

        #4
        Originally posted by Atran
        If 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.
        Additional help posted here:

        Comment

        Working...