Results 1 to 3 of 3

Thread: Open pdf file in vb.net applicatin

  1. #1
    Join Date
    Dec 2008
    Posts
    13

    Open pdf file in vb.net applicatin

    Hello,

    How i can open pdf file in vb.net applicatin?
    Please help.

  2. #2
    Join Date
    Apr 2008
    Posts
    1,948

    Re: Open pdf file in vb.net applicatin

    I know two mehods to Open pdf file in vb.net applicatin.

    1. The quick and easy way to do this is to use the web browser control. This assumes that both IE and the Acrobat Reader are installed on the target system. Just use the Navigate method of the control with the PDF filename as the parameter and you're there.

    2. Right click on any of the tabs in your toolbox and click choose items.(Just make sure you have a version of adobe reader installed before starting.) When the dialog box pops up click the 'com components' tab then pick tha 'adobe pdf reader' com component. Click ok and you should now see a 'adobe pdf reader' control in your toolbox. Click this and drag it to your vb form.(you may need to resize it, usually appears very small). Now in order to read any pdf just alter the 'src' property of the control either in code or in the designer. when you run the program you should be able to view the pdf doc in the vb form with most of the options you get in adobe reader. Here is how you would alter the 'src' property in code.


    Code:
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    
    AdobeReader.src = "C:\mydoc.pdf"
    
    End Sub

  3. #3
    Join Date
    Apr 2008
    Posts
    1,948

    Open pdf file in asp.net applicatin

    Hi,

    The method i talked about earlier is for reading a pdf file within a vb.net windows application and not for asp.net.
    To read a pdf in asp.net just point a hyperlink straight to the pdf file and it should just open it within the browser

Similar Threads

  1. Replies: 5
    Last Post: 10-03-2012, 03:04 AM
  2. Office 2003 won't open via DC but will via File, open
    By krolyat in forum MS Office Support
    Replies: 1
    Last Post: 28-10-2011, 04:26 PM
  3. Replies: 6
    Last Post: 27-06-2011, 07:19 AM
  4. Replies: 4
    Last Post: 07-02-2011, 10:19 AM
  5. How to scroll applicatin in Windows Phone 7
    By Xenaa7 in forum Portable Devices
    Replies: 4
    Last Post: 27-10-2010, 10:04 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,520,869.71381 seconds with 17 queries