Q: how can I get acrobat to print my email attachment?

I need someone to help me with acrobat to print something.

Thank you for your interest, and I appreciate your inquiring further, but I'm not sure this forum is going to be effective for my problem unfortunately.  Nevertheless, here's my situation:
1. Recently McAfee was replaced by my server with Norton.  I believe when they uninstalled McAfee, they took my Adobe Acrobat with it.
2.  I rec'd a "receipt" in my email (for a totally different and unrelated purchase) which I need to print.  I need Adobe Acrobat to do it.
3.  I tried installing Adobe myself (severely techie-challenged) from adobe.com, and up came something about "purchasing" different types of Adobe Acrobat stuff. Nevertheless, I believe I did download Adobe, but I still can't print my receipt. 
4.  I really would like to speak with a customer svc rep and not handle this via this forum.  Again, I am flying in the dark here with trying to follow "simple" instructions about downloading, and of course, it was not successful.  I'd really appreciate speaking with a live human to handle this.  If there is an 800# I can call to connect with a techie who can help me solve this via telephone, I'd like to see it here.  (800-833-6687 led me to this forum).
Thank you.

Similar Messages

  • How can I get Acrobat Reader X to send my pdf to the printer?

    My pdf just looks at me while I push all of the buttons, file menus and keyboard shortcuts associated with printing and it does nothing. No dialog box, no nothing. All three of my printers work and i've tried them all. It just doesn't do anything. Any suggestions? I really need help here.

    From: Pat Willener [email protected]
    Sent: Monday, July 30, 2012 9:16 PM
    To: vinniereed
    Subject: How can I get Acrobat Reader X to send my pdf to the printer?
    Windows 7; Acrobat Reader 10.0; local and online.
    Thanks,
    Vinnie
    Re: How can I get Acrobat Reader X to send my pdf to the printer?
    created by Pat Willener <http://forums.adobe.com/people/pwillener>  in Adobe Reader - View the full discussion <http://forums.adobe.com/message/4588698#4588698

  • How can I get Acrobat 9 to recognize my new device, epson Workforce 3540 all-in-one.

    How can I get Acrobat 9 to recognize my new device, epson Workforce 3540 all-in-one.

    Hi plichy,
    Are you able to print to your new printer from other applications, or is it just Acrobat that doesn't recognize the printer? This document outlines some printer troubleshooting tips, and is a really great place to start: Troubleshoot PDF printing | Acrobat, Reader
    Please let us know how it goes.
    Best,
    Sara

  • Downloaded iTunes 11.0.2.26,the print CD jewel case does not print right,all the songs listed are printed in about a 1/2in. space,how can I get it to print right

    Downloaded iTunes 11.0.2.26,the print CD jewel case does not print right,all the songs listed are printed in about a 1/2in. space,how can I get it to print right

    I recently upgraded to itunes 11.0.1.12 and that fixed the CD Jewel Case Insert song titles problem. Thanks itunes. It's working great!!.

  • How can I get it to print output of inputstream?

    Please forgive me for running two similar thread but the other thread ahs strayed from primal concern of coding.
    Some help with the code please???
    I have set up an inputstream and outputstream to the "ftp process" of java.lang.Runtime I have sent the command "dir" to ftp.
    But How can I get it to print all the files etc of the "dir" sent to ftp process?
    Also I have just read that it is perhaps better to buffer the STREAMS.
    How do I do this for outputsteam? I think I have some clue to do for inputstream with bufferedreader?
    import java.lang.*;
    import java.io.*;
    public class RuntimeFTP{
    public static void main(String[] arg){
    Runtime rt = Runtime.getRuntime();
    String[] callAndArgs = { "ftp.exe", "jaguar.wmin.ac.uk" };
    Process process = null;
    OutputStream os = null;
    InputStream is = null;
    String login = "w0109699";
    String password = "11041976";
    String dircommand = "dir";
    byte[] barraylogin = login.getBytes();
    byte[] barraypassword = password.getBytes();
    byte[] barraydircommand = dircommand.getBytes();
    try
    process = rt.exec(callAndArgs);
    process.waitFor();
    System.out.println("Process exit code is: " + process.exitValue() );
    catch(IOException e)
    System.err.println("IOException starting process!");
    catch(InterruptedException e)
    System.out.println("Interrupted waiting for process!");
    try
    os = process.getOutputStream();
    os.write(barraylogin);
    os.write(barraypassword);
    os.write(barraydircommand);
    catch(IOException io)
    System.out.println("io exception write to outputstream");
    try
    is = process.getInputStream();
    while (is.read() != -1)
    How can I print the data to the user
    i.e all the data obtained from the "dir" command sent to ftp?????????
    catch(IOException io)
    System.out.println("io exception read fron inputstream");

    the above code does not work so I have abondaned it.
    I want to integrate an ftp program into a program I am working on. I have scoured the net for reuse able code and come across a "t or Linlyn ftp program" which claims is easily integrate able into larger applications.
    The problem is did does not seem to work and gives me errors. I would be grateful if someone could tell me why I am getting the error, here is the error:
    C:\My_DL_Dap\ftp in java>appletviewer t.java
    Warning: <applet> tag requires width attribute.
    java.security.AccessControlException: access denied (java.net.SocketPermission j
    aguar.wmin.ac.uk resolve)
    at java.security.AccessControlContext.checkPermission(AccessControlConte
    xt.java:270)
    at java.security.AccessController.checkPermission(AccessController.java:
    401)
    at java.lang.SecurityManager.checkPermission(SecurityManager.java:542)
    at java.lang.SecurityManager.checkConnect(SecurityManager.java:1042)
    at java.net.InetAddress.getAllByName0(InetAddress.java:909)
    at java.net.InetAddress.getAllByName0(InetAddress.java:890)
    at java.net.InetAddress.getAllByName(InetAddress.java:884)
    at java.net.InetAddress.getByName(InetAddress.java:814)
    at java.net.InetSocketAddress.<init>(InetSocketAddress.java:109)
    at java.net.Socket.<init>(Socket.java:118)
    at Linlyn.ftpConnect(t.java:326)
    at Linlyn.<init>(t.java:236)
    at t.init(t.java:83)
    at sun.applet.AppletPanel.run(AppletPanel.java:341)
    at java.lang.Thread.run(Thread.java:536)
    I would also be grateful if someone could try out the program and tell me if it works for them, then I could determine if it is because ftp clients are being blocked by my server. The ftp program is very small, here is the url:
    http://www.afu.com/jdownload.html
    1) compile the code
    2) fill in everywhere it requests "your-server" "username" and "password"
    3) to run appletviewer t.java

  • PDF's print two sided.  How can I get them to print on single pages?

    PDF's print two sided.  There is no option shown.  How can I get thelm to print on single pages?

    1: Go into iTunes.
    2: Right click on the song and choose 'Get Info' (or press cmd+i on a Mac).
    3: In 'Info' change the album name to the one you want it to go into, when you start typeing it should automatically come up.
    4: Check that the disk number and track number is correct.  It should be automatic.
    4: Press OK.
    You should see it go into the album now.

  • How  can I get  Acrobat 8 professional to download on my nedw computer, says it is not available

    how  can I get  Acrobat 8 professional to download on my nedw computer, says it is not available

    Hi Pamela ,
    Refer to the following link to download Acrobat 8 Pro .
    https://helpx.adobe.com/acrobat/kb/acrobat-8-9-product-downloads.html
    Regards
    Sukrit Dhingra

  • I have a new iPad. I am using Comcast as my email provider but when I send a message, it pulls up the facebook email addresses for my  contacts  instead of the addresses stored in my comcast account.  How can I get rid of the Facebook email addresses? The

    I have a new iPad. I am using Comcast as my email provider but when I send a message, it pulls up the facebook email addresses for my  contacts  instead of the addresses stored in my comcast account.  How can I get rid of the Facebook email addresses? The comcast addresses are stored in the comcast (xfinity) app.  I do not use the "mail" or "contacts" apps ....I go straight to comcast (xfinity).  I wish I could start over!!!  thanks.
    iPad

    I could be wrong, but it sounds like Facebook imported to your contacts.  I have the Xfinity app on my new ipad, too, but none of my stored contacts from the online version are showing, only what I manually entered into the iPads contacts are there.  When I did add the FB app, I did not grant it permission to push and pull from my ipad (not a fan of FB knowing every detail about me), so that may be where our difference lies.  You could try to open the app and change your privacy settings, or delete it and then reinstall without granting permissions to integrate.
    I'm sure someone here with a lot more knowledge then me can probably diagnose your issue better, though.  Good luck!

  • How can I get my network printer to print in color?

    I have a Dell 3110cn color printer on my network. Since I did the Maverick update the printer will no longer print in color only b&w. It's using a generic printer driver. I had no problems before the update. It's a great workhorse printer. How can I get this connected properly?

    Bruce777 solved this for me, thank you Bruce! My printer now works perfectly on my new wifi network!
    Bruce's  instructions, for anyone else having the same issue:
    - delete any previously set up printers
    - scrub old hp software and update software to get the hp 2.8 drivers
    - remove the usb cable from the printer if you have one connected
    - reset the printer network to hpsetup (hold down the power button and press network button 2x and then cancel 3x, release power button.)
    - print out the wireless network test report (hold down the network button and press the update button 2x). verify the network name / ssid is hsetup
    - got to sys prefs > network and change the mac wireless network to hpsetup
    - go to the sys pref > print scan
    - add the HP 8000 printer
    - click on the options and supplies button and click on the Show Printer Webpage
    - click on the networking tab > wireless in the left pane > start network wizard and change the network from hpsetup to your network
    - finish (this page may freeze up.  close the browser)
    - go back to the sys prefs and change the wireless network back to your networt
    - go to the printer and print out the wireless network test report (press network button and update button 2x).  Check that the SSID is your network
    - go to sys prefs > print scan > select your printer > options & supplies > show printer webpage > network info (check ssid and compare to wireless network test report)
    - try printing something to your printer.  It might take a little time the first print.

  • How can I get all the print on my screen to be larger?

    How can I get all of the print on my screen to be larger?

    Thank you for helping me with the size of the print on my screen. The suggestion you made works well with the email font. I really wanted all the print on my computer to be larger. (Some of the print seems to be way too small.) Someone suggested I change the resolution settings. I did this, and changed it to 1024 X 640. That changed the size of the font on the toolbar at the top of the page, and that is what I really wanted, as well as all the other print on my screen. Nonetheless, I would like to thank you for your very helpful and prompt reply to my question.
    Sincerely,
    Wayne10

  • How can i get acrobat to work with windows vista

    How can I get adobeexportpdf to work with windows vista?

    But if, on the other hand you do mean Acrobat, please let us know what problem you are having.

  • How can I get my Hp printer to download?

    How can I get my HP F380 printer to download?

    Ok, let's try this first...
    Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions.
    Any devices that previously appeared in your Printer List and Fax List will need to be added again after resetting the printing system.
    Resetting the printing system in Mac OS X 10.5.x+++
        1.    To use the Reset Printing System feature in Mac OS X 10.5.x, follow these steps:
        2.    Choose System Preferences from the Apple menu.
        3.    Choose Print & Fax from the View menu.
        4.    Control-click on list of printers on the left side of the window, then choose "Reset printing system" from the contextual menu. If you don't see a list of printers, Control-click on the text "Click + to add a printer or fax" and select "Reset printing system..." 
   
  As an alternative, if you currently have one or more printers listed, you can Option-click the "-" (Remove printer) button.
    http://support.apple.com/kb/ht1341
    Reboot.
    Then try installing the driver again, I think with the printer plugged in is OK.

  • How can I get gridlines to print on my template that I created in Numbers?

    I am trying to create a template in Numbers and I want the gridlines to print.  The drop downs for x-axis and y-axis under Chart inspector are shaded gray and are not able to be clicked on.  How can I get those gridlines to print?

    Suzy1107 wrote:
    Its a spreadsheet that looks like excel, has two columns at the top and 49 rows at the left side
    You seem to be looking in the Chart Inspector for formatting options for the table. Use the Table Inspector, or the Format Bar for Table Cell Border format options.
    I have circled the border format controls in the Format Bar in the attached screen shot:
    Regards,
    Jerry

  • I found an old Apple id on a computer I use infreqently with an old Ipod.  I have the the Applie ID, but I do not have the password.  In addition,my email account has changed since I created this Applie ID. How can I get reset info to new email address?

    I found an old Applie ID on a computer I use infreqently with an old IPod.  I do not have the password for this AppleID.  When I use the procedure to reset the password, I cannot receive the email as my email address has changed from the original used with the Apple ID.  How can I get the reset information sent to my current email addres so I can establish a new passwod for this Applie ID? 

    FR Tecmobility is wrong, sure he means well but what he suggests will not work - signing out of iTunes Store and back in will have no effect on iCloud. Try the steps at iOS 7: If you're asked for the password to your previous Apple ID when signing out of iCloud
    You may need to contact apple tech support if none of the password change methods work for you. Ask for Account Security. They will need to verify identity, to ensure you are who you claim to be. If that goes well, they can send a password rest e-mail to any e-mail you desigate, so make sure it is one you can access.  Then reset the password. Then you can delete the iCloud account (needs the password to turn off find My Phone/Activation lock)
    keep data on phone, then sign in with your desired apple ID. Good luck. hope you get this sorted out.

  • How can I get my iTunes:FeedID - My email notification never came

    How can I get my iTunes:FeedID to use with my podcasts if my notification email never arrived (it may have been sent, but I've never seen it)? I don't see a place to look for it and it's not listed in my profile or my account on Apple.com. And surely there must be another way to get this number without relying on the vagaries of email.
    My podcast was submitted a few weeks ago and just to double check, I tried to submit it again and was told that it had already been submitted, so I know iTunes has it.
    I can't update my WordPress podcast blog to say I've created more podcasts if I don't have this number.
    Can someone tell me how I can find what this number is?
    Thanks so much.
    Charlie Seymour Jr
    http://ultimateworkathomedads.com/gold/?feed=podcast

    Your iTunes Library is yours and yours alone.
    However... if you wish to share iTunes Content with your husband... see here...
    SHARING iTunes MUSIC
    http://macmost.com/five-ways-to-share-music-in-itunes.html
    Sharing Apps
    http://macmost.com/sharing-ios-apps-with-family.html
    It should be Noted that anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID

Maybe you are looking for

  • USB Drive Resets during file copy, interrupting file operations

    Fresh Arch Linux install, working USB thumb drive (Windows, previous Arch Linux setups, etc.), formatted FAT32. Seems to randomly reset, eject, and auto-re-mount during extensive file operations (i.e. copying 4gb worth of 800 files from the USB thumb

  • Dynamic Order by with user defined Where clause...

    Hello! I have a block based on a table, with no order by set and no where clause. The block is queryable so users can filter the data to be retrieved. Each of the columns on the form have a button above which requeries the block, applying the order b

  • Need clarification on ME2L

    Hi friends, could any one clarify my doubt. In the standard SAP report ME2L and some others the Symbols were used in selection parameters. These are the symbols =         Single Value >=       Greater than or Equal to <=       Less than or Equal to >

  • Full protected or purchased songs not playing

    full protected or purchased songs not playing all the way through.

  • Unable to log on to Oracle Portal

    We have been running Oracle portal version 3.07 for approx 1 month, last night all was ok. This morning when trying to logon to portal you receive the following error : ORA-06510: PL/SQL: unhandled user-defined exception ORA-06512: at "PORTAL30.WWNLS