Opening PDF docs using ipad3

using an ipad3. need to know how to open PDF docs to view at websites. thanks

thanks for trying. it didn't work. when I'm on the internet using safari I cannot open a PDF doc. I have no problem opening docs in my email. only when using safari on the internet. there must me someone else out there that has experienced this problem and can explain what I need to do.
thanks.
Sent from my iPad

Similar Messages

  • I have been able to open PDF docs using C# API Process.Start("Full_path_To_the_PDF_File") in windows 7 or windows 8 with all previous versions of Acrobat32 reader.

    I have been able to open PDF docs using C# API Process.Start("Full_path_To_the_PDF_File") in windows 7 or windows 8 with all previous versions of Acrobat32 reader.
    However, with v11.0, the same command, in Windows 8, it does not open the PDF document. I can see the Acrobat(32) started in the task manager, but the document does open. Not sure how I can troble shoot this problem. Any help would be appreciated.

    I haven't use the C# API but I imagine it is the same as C ShellExecute. Which in turn is the same thing (in essence) as double clicking in Windows Explorer.
    So... does Adobe Reader run normally on this machine?
    And does it start and open if you double click on a PDF file?

  • I am using Endorange as my main mail, but every time i wannt to send open pdf docement as e-mail my computer comes up with other mail softwere called mail, how do I chance that?

    I am using Endorange as my main mail, but every time i wannt to send open pdf docement as e-mail my computer comes up with other mail softwere called mail, how do I chance that?

    I am using Endorange as my main mail, but every time i wannt to send open pdf docement as e-mail my computer comes up with other mail softwere called mail, how do I chance that?

  • Downloaded Adobe 9 -- Using Word 2007 to open PDF doc (Error Msg)

    I just updated to Adobe 9 and am getting this signature error message when trying to open a pdf doc from MicroSoft Word 2007:  appname: acrord32.exe appver: 9.3.0.148 ModName: acrord32dll ModVer: 9.3.0.148 Offset: 001937fa
    Am not able to get beyond the error msg. 
    Help anyone?

    I have MicroSoft Word Office 2007.
    I recently upgraded from Adobe 8.1 to 9.3.  Now, I can no longer open pdf docs.
    I am getting an error that says: "Adobe Reader 9.3 (or 8.1) has encountered a problem and needs to close."
    I have uninstalled 9.3 and reinstalled.  I have uninstalled 9.3 and reinstalled 8.1.  I have gone back to 9.3.
    I have run 2008 Advanced Registry Optimizer.
    The error signature when trying to open a pdf file w/ either Adobe Reader (9.3 or 8.1) is this:
    AppName acrord exe AppVer: 9.3.0148 ModName: acrord32.dll ModVer: 9.3.0.148 Offset: 0019371a.
    How do I get back to opening pdf docs??

  • How do I open pdf docs in Safari 5.1.5?  Online suggestions have not worked.

    How do I open pdf docs in Safari 5.1.5?  Online suggestions have not worked.

    Back up all data.
    In the Finder, select Go ▹ Go to Folder... from the menu bar, or press the key combinationshift-command-G. Copy the line of text below into the box that opens, and pressreturn:
    /Library/Internet Plug-ins
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari.
    If you still have the issue, repeat the above steps using this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • I cannot open pdf docs despite downloading acrobat pro

    I cannot open pdf docs despite downloading acrobat pro  do I have to log of and on before it works

    Hey John Watt,
    Before answering your question, I would like to know few things from you so that I an analyze the issue.
    Could you please tell me what Acrobat pro as well as OS version are you using.
    Do you get any specific error message when clicking on Acrobat icon?
    Please let me know.
    Regards,
    Anubha

  • TX Unable to open PDF docs

    message ~ memory cache is full, please soft reset.  No change, still unable to open PDF docs.  How do I clear memory cache or is PDF reader defective?   
    Post relates to: Palm TX

    Adobe for Palm is an ancient program that requires you to convert the raw PDF files on your desktop before you can sync them on a PalmOS device.  Are you using the converter program from Adobe?
    I gave up on this program a long time ago, and switched to the freeware "PalmPDF" available on freewarepalm.com.  You can put raw PDF's on an SD card and they can be read by the program with no conversion necessary!
    Wyrenut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • I have had a trial version of Acrobat X1 Pro - I have decided not to buy at this stage - for some time it has been conflicting with opening PDF docs after saving as from word 2007 - I uninstalled Pro X1 and now when I save as from word 2007 to PDF it will

    Can anyone help with this - do I have to uninstall Reader and then reinstall?

    I have had a trial version of Acrobat X1 Pro - I have decided not to buy at this stage - for some time it has been conflicting with opening PDF docs after "saving as" from word 2007 - I uninstalled Pro X1 and now when I "save as" PDF from word 2007 to PDF it will save the document as a PDF but will not open the document to display after publishing - I have to got to where the file has been saved to view the new PDF document - this is really annoying - do I have to delete adobe reader and reinstall it - adobe needs to look at this conflict with acrobat pro as I have even gone it to properties and tried to have adobe reader as the default PDF program - the main issue is that I cannot view the PDF after publishing it from word 2007

  • Open pdf file using ms access visual basic 2000 (9.0.2720)

    I'm using Acrobat reader to open pdf file using a vb proceedure , how ever I can't get it to open a specific file thats in another file folder.
    The code I'm using looks like the following: This is windows 7, using the (x86) virtual in 32 bit mode.
    Private Sub Form_Click()
    'checks for valid msds document
    Dim fs As FileSearch
    Dim stAppName As String
    Dim i As Integer
    On Error GoTo Err_form_Click
    Set fs = Application.FileSearch
    With fs
                 .NewSearch
                .LookIn = "c:\program files (x86)\cvmm\msds\"
                .FileName = Me![MSDS Index #] & ".pdf"
                .MatchTextExactly = True
    If .Execute() <> 0 Then
                        stAppName = "C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe c:\program files(x86)\cvmm\msds\" & Me![MSDS Index #] & ".pdf"
                          Call Shell(stAppName, 1)
               End If
                     End With
    exit sub
    Err_form_Click:
        MsgBox Err.Description
             Resume Exit_form_Click
    Exit_form_Click:
            MsgBox " no file found."
    End Sub
    This used to work when I was using acrobat 5.0,

    You should have quotes around a filename that has spaces in it. Older versions were more forgiving for some reason.
    Much better anyway is to use ShellExecute, which means you don't have to know or care what PDF reading software is installed and how to run it.

  • How do I force safari to open pdf files using Adobe???

    How do I force safari to open pdf files using Adobe and not in the browser?

    You need Acrobat Reader as a Safari plug in.
    http://get.adobe.com/reader/

  • TS1702 Safari has just stopped opening PDF docs, it shows the message that I get on my PC when the server is unavailable etc.  Foxbrowser opens them fine.  Thanks  I.M.

    Safari has just stopped opening PDF docs, it shows the message that I get on my PC when the server is unavailable etc.  Foxbrowser opens them fine.  Thanks  I.M.

    Hello kmanthie,
    I just sent you a private message. If you are not sure how to check your forum messages, this post has instructions.
    I worked on behalf of HP.

  • After i changed the setting in application tab in options : open pdf doc by adobe by default, the "Ask" window still pop up every time. How to fix this ?

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/913026]]</blockquote>
    after i changed the setting in application tab in options : open pdf doc by adobe by default, the "Ask" window still pop up every time. How to fix this ?

    How do I fix this problem ...javascript (cid) applications.

  • Open pdf files using AutoVue

    I need to open pdf files using AutoVue in .Net Desktop application(Windows Form ). Is it possible?
    If it is possible please help me to.
    Thanks
    Bimal

    Out of the box no
    Doing it requires a good knowledge of .Net and JAVA (specifically JNI) in order to build a JAVA wrapper for .Net
    I would recommend to google on how you can interact with a java applet inside an IEFRame that is sitting inside a .Net application
    Java.NET : Integration of Java and .NET - CodeProject
    But your are on your own there

  • Can i use Response method in livecycle designer to render or open pdf doc?

    Hello,
    Can anybody please tell me is it possible to use response method available in the adobe livecycle designer which takes the input value to open the pdf doc.
    Case 1: if we send adobe form throgh mail as pdf doc,then at the receiver side if the user open the pdf doc a popup should come asking for the input value.This popup will be from the response method.
    Case 2:if we save the adobe form as pdf doc on to our desktop and then if we try to open the pdf doc a popup should come asking for input value.
    Is it possible to do ?
    If yes then in which event of livecycle designer we should write that response method and in what way?
    If no,is there any other way to do this?
    Thanks in advance,
    Menaka

    Yes i have tried in other events of livecycle designer.
    In Formready event -> if i do preview pdf,first it will display form and then it ll ask for password.But with this event only if i save the pdf to my local desktop and try to open it ll not ask for password anywhere.
    In Layoutready event ->Pdf preview in designer is working fine,but when i save it my local desktop and try to open it ll not ask for passward.
    Could anybody tell me how to do it.
    Menaka.

  • Problem Opening Hyperlink on Adobe .pdf Docs Using Safari Browser

    Does anyone have a problem opening a hyperlink on .pdf documents using Safari browser on iPhone or Mac computers?

    Kimmerdog, Would you please rewrite your sentence "you have to publish the document it to the repository". And what is a repository?

Maybe you are looking for

  • Can't delete podcasts from Ipod Touch

    I have an Ipod Nano and an Itouch, and I manually manage the podcasts on both of them. The Nano works fine. On the Itouch, I can connect my Itouch, go into podcasts under my device, and delete them, but they aren't deleted from my Itouch. However, th

  • Error message in app store

    So I am getting a weird error message on my iPhone all of a sudden when trying to update apps: ""your account is not valid for use in the Australian store. You must switch to the U.S. Store before purchasing." I live in NYC. I don't even see an optio

  • Windows 7 driver issue with graphics card

    Currently windows 7 will not let me play most games because my graphics card(s)will not officially show up in my computer and system properties. I have installed boot camp drivers on windows, and searched nvidias site for a driver, but it still wont

  • External commands fail in Background Jobs on Application server

    Hi, We are having problems with jobs that include External Commands. The jobs run successfully if on the Central Instance. But if they run on either of the two Application Server's it fails with 'Unable to connect to Target Host' error message. I can

  • RFC_ERROR_SYSTEM_FAILURE occured when updating P0210 in ESS

    Hello, I got the following message error in ESS when I tried to create a new entry in the infotype P0210 using  W-4 Tax Withholding service. I checked the table T7XSSPERSUBTYPE and also the user authorizations and all things are fine. The problem doe