Can't open pdf attachment on Palm TX with Adobe For Palm download

I downloaded Adobe for Palm OS (v. 3.0) to open email pdf attachments, but am getting error message: Attachment (not supported in this version) winmail.dat
So can not open any pdf attachments.
Tried getting mail via VersaMail and via m.comcast.net - same problem.
Using Vista, Palm TX
Thanks
Post relates to: Palm TX

Adobe for Palm is an ancient program that cannot read raw .pdf files.  It only works with a desktop component that converts pdf files that the old adobe program can read on a Palm.
Look at the free "PalmPDF" at freewarepalm.com.  It can read pdf files by itself.
(I'd also suggest you delete Adobe from your Palm as it's caused a lot of problems for many users)
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!

Similar Messages

  • Can't open PDF attachment in e-mail sent from Outlook, says I need to save first, how?

    Cannot open PDF attachment in webmail sent from Outlook, says I need to save first; how do I save the link?

    Looks like another user asked similar question with over 600 views and no replies ... hmmm.  When I click on the attachment, it says I must save it to my disk; with one button mouse just click once and save?  I've tried dragging and saving the attachment to word doc but opened up with a page of garbled words/symbols,etc.  Any ideas are welcome.

  • How can I open PDF attached to Yahoo email in Windows7 ?

    ADOBE Reader XI Installed seemingly OK, [windows 7] but does not open PDF attachment contained in Yahoo email

    When I try, an unreadable large number of letters and symbols shows up, framed in the middle of the screen.

  • How to fix problem with opening pdfs in Windows 8.1 with Adobe Reader XI?

    Every time I try to open a pdf on my new laptop with Adobe Reader XI, I get a message than either the file is not supported or its damaged. But it still opens fine on my old laptop with Windows 7.
    Any suggestions?@

    Hi. Thanks for taking the time to answer. Upon further investigation, it appears that the original pdfs I was transferring from my old computer to my new one were “grayed out” on the flash drive, so they wouldn’t open on the new laptop. When I went back and reloaded the pdfs again, they weren’t grayed out, and now everything’s working fine. But again, thanks so much for making the effort to help. I really appreciate it.

  • Can't open pdf attachment in Yahoo Mail. Worked in 25.0 not 25.0.1. Still works with IE.

    Clicking on a pdf attachment in AT&T/Yahoo Mail results in "a file was downloaded". Used to open the file in Firefox 25.0 and prior. Switching to IE I can click on the attachment and it opens. Seems it could be something in 25.0.1. I cleared my history (cache, cookies) but this did not fix the problem. I disabled the pdf viewed and that didn't help either.

    i'm not sure as to what exactly is going on, but it looks like yahoo has changed something on their server that makes certain old url formats dysfunctional - at least quite a number of other users have reported that... so if you have a bookmark for yahoo mail, change its address to the generic https://mail.yahoo.com/, which should redirect you to the current & working url

  • Can not open pdf attachment in email (SBWP)

    Hello Expert,
    I created a program to covert a form to pdf format, then, send it to SAPoffice (SBWP) as an attachment successfully. But I cannot open the pdf attachment. I don't know the reason. Could you please give me some suggestion?
    use function module 'CONVERT_OTF_2_PDF' to convert pdf format
    use function module SO_NEW_DOCUMENT_ATT_SEND_API1 to send email.
    points will be assigned for Helpful suggestion.
    Thank you.

    Thanks.
    I have tried to download it into my local computer, the downloaded pdf file can be open correctly. So it's the problem in my program.
    Below is my program, thanks a lot.
    DATA: itcpo LIKE itcpo,
          tab_lines LIKE sy-tabix.
    Variables for EMAIL functionality
    DATA: maildata LIKE sodocchgi1.
    DATA: mailpack LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
    DATA: mailhead LIKE solisti1 OCCURS 1 WITH HEADER LINE.
    DATA: mailbin LIKE solisti1 OCCURS 10 WITH HEADER LINE.
    DATA: mailtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE.
    DATA: mailrec LIKE somlrec90 OCCURS 0 WITH HEADER LINE.
    DATA: solisti1 LIKE solisti1 OCCURS 0 WITH HEADER LINE.
    PERFORM send_form_via_email.
    FORM SEND_FORM_VIA_EMAIL *
    FORM send_form_via_email.
      CLEAR: maildata, mailtxt, mailbin, mailpack, mailhead, mailrec.
      REFRESH: mailtxt, mailbin, mailpack, mailhead, mailrec.
    Creation of the document to be sent File Name
      maildata-obj_name = 'TEST'.
    Mail Subject
      maildata-obj_descr = 'test_1234567879'.
    Mail Contents
      mailtxt-line = 'Here is your file'.
      APPEND mailtxt.
    Prepare Packing List
    PERFORM prepare_packing_list.
      CLEAR: mailpack, mailbin, mailhead.
      REFRESH: mailpack, mailbin, mailhead.
      DESCRIBE TABLE mailtxt LINES tab_lines.
      READ TABLE mailtxt INDEX tab_lines.
      maildata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( mailtxt ).
    Creation of the entry for the compressed document
      CLEAR mailpack-transf_bin.
      mailpack-head_start = 1.
      mailpack-head_num = 0.
      mailpack-body_start = 1.
      mailpack-body_num = tab_lines.
      mailpack-doc_type = 'PDF'.
      APPEND mailpack.
    PERFORM get_otf_code.
      DATA: BEGIN OF otf OCCURS 0.
              INCLUDE STRUCTURE itcoo .
      DATA: END OF otf.
      DATA: itcpo LIKE itcpo.
      DATA: itcpp LIKE itcpp.
      CLEAR itcpo.
      itcpo-tdgetotf = 'X'.
    Start writing OTF code
      CALL FUNCTION 'OPEN_FORM'
           EXPORTING
                form     = 'ZTEST_FORM'
                language = sy-langu
                options  = itcpo
                dialog   = ' '
           EXCEPTIONS
                OTHERS   = 1.
      CALL FUNCTION 'START_FORM'
           EXCEPTIONS
                error_message = 01
                OTHERS        = 02.
      CALL FUNCTION 'WRITE_FORM'
           EXPORTING
                window        = 'MAIN'
           EXCEPTIONS
                error_message = 01
                OTHERS        = 02.
    Close up Form and get OTF code
      CALL FUNCTION 'END_FORM'
           EXCEPTIONS
                error_message = 01
                OTHERS        = 02.
      MOVE-CORRESPONDING itcpo TO itcpp.
      CALL FUNCTION 'CLOSE_FORM'
           IMPORTING
                result  = itcpp
           TABLES
                otfdata = otf
           EXCEPTIONS
                OTHERS  = 1.
      DATA: i_tline TYPE TABLE OF tline WITH HEADER LINE,
            v_len_in LIKE sood-objlen.
      DATA doctab_archive LIKE docs OCCURS 10.
      CALL FUNCTION 'CONVERT_OTF_2_PDF'
    EXPORTING
      USE_OTF_MC_CMD               = 'X'
      ARCHIVE_INDEX                =
    IMPORTING
      BIN_FILESIZE                 =
        TABLES
          otf                          = otf
          doctab_archive               = doctab_archive
          lines                        = i_tline
       EXCEPTIONS
         err_conv_not_possible        = 1
         err_otf_mc_noendmarker       = 2
         OTHERS                       = 3
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CLEAR solisti1. REFRESH solisti1.
      LOOP AT i_tline.
        solisti1-line = i_tline.
        APPEND solisti1.
      ENDLOOP.
      LOOP AT solisti1.                                         "solisti1.
        MOVE-CORRESPONDING solisti1 TO mailbin.
        APPEND mailbin.
      ENDLOOP.
      DESCRIBE TABLE mailbin LINES tab_lines.
      mailhead = 'TEST.PDF'.
      APPEND mailhead.
    Creation of the entry for the compressed attachment
      mailpack-transf_bin = 'X'.
      mailpack-head_start = 1.
      mailpack-head_num = 1.
      mailpack-body_start = 1.
      mailpack-body_num = tab_lines.
      mailpack-doc_type = 'PDF'.
      mailpack-obj_name = 'TEST'.
      mailpack-obj_descr = 'Subject'.
      mailpack-doc_size = tab_lines * 255.
      APPEND mailpack.
    Set recipient - email address here!!!
      mailrec-receiver = 'FU.Q.HUANG'.  "'[email protected]'.
      mailrec-rec_type = 'B'.           "'U'.
      APPEND mailrec.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data                    = maildata
      PUT_IN_OUTBOX                    = ' '
    IMPORTING
      SENT_TO_ALL                      =
      NEW_OBJECT_ID                    =
        TABLES
          packing_list                     = mailpack
      OBJECT_HEADER                    =
         contents_bin                      = mailbin
         contents_txt                     = mailtxt
      CONTENTS_HEX                     = mailbin
      OBJECT_PARA                      =
      OBJECT_PARB                      =
          receivers                        = mailrec
       EXCEPTIONS
         too_many_receivers               = 1
         document_not_sent                = 2
         document_type_not_exist          = 3
         operation_no_authorization       = 4
         parameter_error                  = 5
         x_error                          = 6
         enqueue_error                    = 7
         OTHERS                           = 8
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.

  • Can´t open pdf attachment in Outlook 2010 after inst. Reader X

    Hi!
    Today I updated Reader from 9 to 10.1.2 - I did not face any problems with the installation.
    But now I can not open any pdf attachment in Outlook 2010 (Reader opens and closes immediately) if Reader X is not running.
    When the Reader is allready running I can open the files without problems.
    When I save the file on my desctop I can also open it - also if reader is not allready running.
    I un- and reinstalled the reader fiew times, also tried the repair tool - nothing helped.
    I receive a lot of pdf Files - any help would be great.

    Did you try this?  It worked for me.
    http://www.darrenstraight.com/blog/2010/12/16/adobe-reader-x-there-was-an-error-opening-th is-document-access-denied/
    Open up Adobe Reader X
    On the Toolbar Menu go to Edit > Preferences
    Go to the general tab under Categories.
    Untick “Enable Protected Mode at Startup”
    If asked if sure, click Yes and then Ok.
    Now close Adobe Reader X and try opening the PDF again.

  • TS1506 I can't open pdf attachements in my email from outlook on my iphone

    How do I open pdf attachments in my email on my iphone

    here is what is supposed to happen...
    an e mail attachment is usually shown as a icon at the end of the e mail.  If you touch it, and if it is a file type that the pad can handle in preview, it opens and you can read it.  and example would be a word document.
    If you want to do something besides read the attachment, you need an app.  If you touch and hold the attachment you will ge a prompt called "open in", and any apps you have that can deal with that file type will ber lsited, you pick the one you want to use.
    Sometimes there is no app on your machine to open a particular file type.  You can go to the app store, and search for that file extension, and frequently find an app that will deal with it.  Windows .wmv files are an example.
    Lastly, there are some file types that the pad simply will not open, and there are no apps to be had either.  Flash attaments, i believe the extension is swx, cannot work on the pad.
    so - when you get an e mail with an attachment - what happens when you touch it?

  • Can't open pdf attachment without saving first

    Whenever someone emails me with a pdf attachment I cannot just open the attachment. It makes me save the document first, locate the file I just saved in my hard drive, and then I can open it. I started having this problem earlier this week. Before, I could just click on the attachment and it would open. I have the latest first of Adobe. What can I do so I can simply click on an attachment and it opens?

    What is your operating system & version?
    What is your email client & version?
    What is your Adobe Reader version?
    What exactly means "cannot"?

  • Ipad can't open PDF attachment

    Emails sent from Outlook are received on the ipad but the PDF attachment won't open. How can this be fixed?

    Looks like another user asked similar question with over 600 views and no replies ... hmmm.  When I click on the attachment, it says I must save it to my disk; with one button mouse just click once and save?  I've tried dragging and saving the attachment to word doc but opened up with a page of garbled words/symbols,etc.  Any ideas are welcome.

  • Can't open .pdf attachment to e-mail

    After straightening out the conflict between Reader & Acrobat (deleted Reader per suggestion on this forum), I now have a new problem.  When I double click a .pdf attachment to an e-mail (I use Thunderbird), I get the following message:
    "C:\DOCUME~1\HP_ADM~1\LOCALS~1\Temp\ADOBE.pdf could not be opened because the associated helper application does not exist. Change the association in your preferences."
    I went to Preferences of Acrobat 9 std but couldn't find anything that seemed to relate to a helper application.
    Any suggestions?
    Thanks.

    Turns out I found a note from Mozilla when this was a problem with
    reader that said to simply delete that preference for acrobat.  Then,
    when I click to open the .pdf file, Thunderbird asks me if I want to use
    Acrobat 9.1 and has a box to click to enable this to occur every time.
    It worked.
    If anyone else encounters this, here's the website containing the
    solution for both Firefox & Thunderbird.
    http://kb.mozillazine.org/The_associated_helper_application_does_not_exist
    Cheers,
    Keith

  • I suddenly can not open pdf files. I have had Adobe Reader Xl and just ran into this problem

    I have had adobe reader xl for some time and suddenly can not open a pdf file. I received an email yesterday with a pdf attachment which I can not open. What could be my problem?

    Hi Pat, My operating system is Windows 7, Home Premium Service Pack 1. My email client (email Provider is Cox Communications - Cox.net).
    Can not in my post means I tried to open a pdf attachment to a email. I received  nothing happens. I do not get a blank screen or any messages. Nothing Nothing happens at all. I can click several times and get no response.
    I did discover that by clicking on the Adobe Icon on my deskt topi get an Adobe box containing  "Do you want to allow changes to your computer. I click Yes and get to my computer where I can find the above mentoned attachment which I think I had previously saved. I then get the attachment whick I can print. This may be printing from my hard drive - I am not sure. I think I could go through this procedure every time I want to open a atachment but it seems a long way around.
    Any help you can give me would be appreciated. I have thought about removing Adobe and reinstalling. Maybe there is a corruption to my Adobe file.
    Jim

  • Can't open pdf files in Windows 8 with Acrobat XI

    I have windows 8, and Mozilla Thunderbird email client.  When attempting to open PDFs I get this message "Adobe Reader could not open 'Wiring Invoice 409343281 Dated 04_05_2013-2.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded)."  I have tried documents from numerous different sources, all with the same result.  I have uninstalled, reinstalled, repaired, restarted, etc.  I did not have this issue with XP and Acrobat reader X.   HELP!!  I cannot print invoices until this is corrected....thanks!

    Hi,
    Are you try to open PDF file attachments from Mozilla Thunderbird.?
    Could you try to save the PDF file locally and then try to open the PDF file?
    Or try downloading sample PDF from here http://www.samplepdf.com/sample.pdf and open it in Adobe Reader.
    Thanks

  • Editing pdf attached to outlook emails with Adobe Acrobat - Std or Pro?

    Hi
    I have a customer, who wants to edit the PDFs, which are attached to emails, before forwarding them. (He just wants to add a sticky note).
    I recently found out, that this is only possible with Adobe Acrobat and not with Adobe Reader. Now, the question is, which version do they have to use? Acrobat Standard or Acrobat Professional?
    Does someone just know the answer or can anyone with Adobe Acrobat Std test this situation?
    Kind Regards,
    eddie

    It's been a long time since I've used Acrobat 7 Pro but I have used Acrobat 8 Professional.
    The key thing is to choose the correct tool. You're looking for the Touchup Text tool, which is probably on the Advanced Editing toolbar. You can probably open up that toolbar by choosing View > Toolbars > Advanced Editing. With that tool selected, drag through the sentence to be deleted. Right-click (Control-click) on the selected text and press Delete.

  • Opening PDF attachments in Outlook 2003 with Adobe 8.1

    Everytime I attempt to open a Pdf file that is attached to an e-mail, It opens in Excel, even though it is not an excel spreadsheet.

    The can only open it on their machine if they save the pdf attachment after renaming it. All computers on the network have the latest Outlook 2003 updates, so it puzzles me that only three end users with the same version of Outlook 2003, with the same updates, are not able to view the attachment from Outlook, but the other users can. Also, why do those three end users have to rename the file if the save it to the their computer to be able to view it, but no one else has to. And, it is not every pdf attachment either, just some from certain people that send them an e-mail. Really puzzling issue that I need to get resolved...

Maybe you are looking for

  • I probably know the answer (no sound) but humor me

    I purchased a HP Pavillion a4316f (Windows 7) about 3 weeks ago. My sound worked fine for about a week. I bought a set of cheap speakers because, although I want sound, it doesn't have to be more than basic sound and I wanted to replace the 5 or so y

  • ALV grid with 2 headers

    Hi Gurus, I need to display ALV  GRID  as below.        Header1                                  Header2         col1col2                                     col3 col4 Here header1 and header2 are top headers. Both Header1(col1 , col2) and Header2 (c

  • How to make wallets in CS5

    They had automatic wallets in automate in CS3; where is it in CS5?

  • ACS 5.2 LDAP authentication through groupMembership

    Hi all, I've succesfully configured ACS to authenticate users against our Novell DB through LDAP External Identity Store . With this setup all users having Novell account are authenticated. There's an extra requirement that only users belong to group

  • How to 'Paste' a Word doc into InDesign and keep all of the settings?

    I've set up styles in the Word doc, that I was hoping would transfer into InDesign, once pasted. The Word doc is very large, and has hundreds of jpegs placed within it. My issue is that once it is pasted, the images are overlapping the text above it,