Error message appears before printing fillable forms.

Why am I getting this message when I want to print fillable tax forms.
"Before viewing PDF documents in this browser you must launch Adobe Reader
and accept the End User Agreement, then Quit and relaunch the browser."
When I downloaded the latest Adobe Reader, my computer tells me it is already in your system,
but I cannot get to the End User Agreement to accept.
Can someone walk me through?
Thanks.

Inserting an image to check that there isn't another forum malfunction:
Works for me...
What image type are you trying to insert?  I know that GIF, JPG, PNG images are allowed; there may be others as well (max 8 MB).
Paulette Torres wrote:
At this point, I wouldn't mind to allow you to remotely navigate my computer so that we both don't have to waste time each other's time and get it done right once and for all.
Sorry, most of us are just other users, so we can't do that.

Similar Messages

  • Error message when receive a fillable form back from patient

    Hello:
    The image below is an error message we received when the patient emails us back the survey form we have emailed to them.
    How do we fix so we can gather the data that was sent to us?

    Could you please confirm if you are receiving .FDF file as an email attachment.
    If this is the case then the above message is expected.
    FDF file just contains the response data and it requires original PDF where it can merge the data to show the final output.
    Steps to avoid this workflow:
    1. Use the complete PDF format on submit button.
    2. If you have the original PDF then save the FDF file separately and merge the data using following option:
         a. Open the original PDF in Acrobat.
         b. Go to Tools -> Form -> More Form Options -> Import Data
              and then locate the FDF file on your machine.

  • Photoshop suddenly does not print to Epson 3880 - PROBLEM: Cannot print from Photoshop  After restart error message appears:  - "There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopen

    PROBLEM: Cannot print from Photoshop
    After restart error message appears:
    — “There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopened any documents.”
    • All print commands are greyed out and unavailable — even to call up the printer commands cannot be done.
    The printer printed fine until about 2 weeks ago when this error message appeared.  Printing continues from Pages, I-photo, preview etc. —  only Photoshop fails.
    The printer has been turned on and off, as have open documents been closed and open etc..   Preferences reset.  Repeatedly I have read through blogs and forums and attempted to contact Adobe — all without results
    Epson support struggled to find reason and several solutions were tried and they assume this is an Adobe problem.
    Running Mac Powerbook X 10.10.2 / Photoshop CS6 13.0.6.x64
    Attempting unsuccessfully to print to Epson 3880
    What Adobe support will be of help.
    Robert Darling —  2/19, 20, 21,22,23/2015

    Probably best to ask in Photoshop General Discussion
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Getting error message "missing ; before statement 24"

    Hello,
    I'm getting the error message "missing ; before statement 24" in the following script:
    //Create a variable to hold the document object
    var StartDate = (xfa.form.form1.page1.signature.StartDate.rawValue);
    var EndDate = (xfa.form.form1.page1.signature.EndDate.rawValue);
    var assocName = (xfa.form.form1.page1.signature.assocName.rawValue);
    var assocID = (xfa.form.form1.page1.subForm1.assocID.rawValue);
    var assocEmail = (xfa.form.form1.page1.subForm1.assocEmail.rawValue);
    var assocExt = (xfa.form.form1.page1.subForm1.assocExt.rawValue);
    var assocDept = (xfa.form.form1.page1.subForm1.assocDept.rawValue);
    var mgrName = (xfa.form.form1.page1.subForm1.mgrName.rawValue);
    var mgrEmail = (xfa.form.form1.page1.subForm1.mgrEmail.rawValue);
    var salariedHourly = (xfa.form.form1.page1.subForm1.salariedHourly.rawValue);
    var directReports = (xfa.form.form1.page1.subForm1.directReports.rawValue);
    var perfRating = (xfa.form.form1.page1.subForm1.perfRating.rawValue);
    var howLongWorking = (xfa.form.form1.page1.request.howLongWorking.rawValue);
    //SUBMIT DATE
    if (StartDate == "") Then
    xfa.host.messageBox( "Please enter a Submit Date" );
    xfa.host.setFocus("xfa.form.form1.page1.subForm1.StartDate");
    //HIRE DATE
    elseif (EndDate == "") Then
    xfa.host.messageBox( "Please enter a Hire Date" );
    xfa.host.setFocus("xfa.form.form1.page1.subForm1.EndDate");
    //NAME OF ASSOCIATE
    elseif (assocName == "") Then
    xfa.host.messageBox( "Please enter your Name" );
    xfa.host.setFocus("xfa.form.form1.page1.subForm1.assocName");
    //ASSOCIATE ID
    elseif (assocID == "") Then
    xfa.host.messageBox( "Please enter your ID" );
    xfa.host.setFocus("xfa.form.form1.page1.subForm1.assocID");
    //ASSOCIATE EMAIL
    elseif (assocEmail == "") Then
    xfa.host.messageBox( "Please enter your email address" );
    xfa.host.setFocus("xfa.form.form1.page1.subForm1.assocEmail");
    //ASSOCIATE EXTENSION
    elseif (assocExt == "") Then
    xfa.host.messageBox( "Please enter your telephone extension" );
    xfa.host.setFocus("xfa.form.form1.page1.subForm1.assocExt");
    //ASSOCIATE DEPARTMENT
    elseif (assocDept == "") Then
    xfa.host.messageBox( "Please enter your department" );
    xfa.host.setFocus("xfa.form.form1.page1.subForm1.assocDept");
    //MANAGER NAME
    elseif (mgrName == "") Then
    xfa.host.messageBox( "Please enter your manager's name" );
    xfa.host.setFocus("xfa.form.form1.page1.subForm1.mgrName");
    //MANAGER EMAIL
    elseif (mgrEmail == "") Then
    xfa.host.messageBox( "Please enter your manager's email address" );
    xfa.host.setFocus("xfa.form.form1.page1.subForm1.mgrEmail");
    //SALARIED HOURLY
    elseif (salariedHourly == "") Then
    xfa.host.messageBox( "Please enter whether your are salaried or hourly" );
    xfa.host.setFocus("xfa.form.form1.page1.subForm1.salariedHourly");
    //DIRECT REPORTS
    elseif (directReports == "") Then
    xfa.host.messageBox( "Please indicate whether you have any direct reports" );
    xfa.host.setFocus("xfa.form.form1.page1.subForm1.directReports");
    //PERFORMANCE RATING
    elseif (perfRating == "") Then
    xfa.host.messageBox( "Please certify your last performance rating" );
    xfa.host.setFocus("xfa.form.form1.page1.subForm1.perfRating");
    //HOW LONG WORK
    elseif (howLongWorking == "") Then
    xfa.host.messageBox( "Please indicate how long you anticipate working this arrangement" );
    xfa.host.setFocus("xfa.form.form1.page1.questions.howLongWorking");
    else
    Button6.execEvent("click");
    page2.presence = "visible";
    EndIf
    I've been hunting for several hours and can't seem to find or correct the problem. Can anyone help?
    Thanks,
    MDawn

    I'm still having trouble. I tried to change the script to JavaScript. Now I'm getting "subForm1 not defined" error message. But it appears that subForm1 is set up properly.
    Any thoughts?
    Thanks,
    MDawn

  • When I attempt to open firefox an error message appears telling me that firefox is already running, but I can't find it running. How do I do so or in any case close the already running Firefox process?

    When I attempt to open Firefox instead of Firefox opening, an error message appears saying "Firefox is already running but isn't responding. To open another window please close the existing Firefox process or restart the system.", but I can't find that process of Firefox in order to kill it, and after restarting the system there is still the problem. I have found an emergency fix to at least get online, and that is to use"Firefox_Profile_Manager" in the start menu's "run" start menu, but the
    Firefox that then opens is that one doesn't carry over what I had in my bookmarks but starts bookmarks anew.

    Sounds like it is hanging when you exit and later try to restart Firefox.
    * How to stop the running Firefox process
    ** In Task Manager, does firefox.exe show in the '''<u>Processes</u>''' tab?
    ** See: http://kb.mozillazine.org/Kill_application
    **Windows 7 users: http://www.techrepublic.com/blog/window-on-windows/reap-the-benefits-of-windows-7s-task-manager/2576
    * What may cause Firefox to hang at exit
    **Windows 7 Task Manager: http://www.techrepublic.com/blog/window-on-windows/reap-the-benefits-of-windows-7s-task-manager/2576
    ** http://support.mozilla.com/en-US/kb/Firefox+hangs
    ** http://kb.mozillazine.org/Firefox_hangs
    ** https://support.mozilla.com/en-US/kb/Firefox+is+already+running+but+is+not+responding
    * You may need to try Firefox Safe Mode
    ** You may need to use '''Safe Mode''' to locate the problem: ***See: http://kb.mozillazine.org/Safe_Mode
    ***Firefox 4 users, hold the Shift key while clicking the Firefox 4 desktop icon to enter Safe Mode.
    ***Firefox Safe Mode is a diagnostic mode that disables Extensions and some other features of Firefox.
    ****In Firefox 4, Safe Mode also disables Plugins and Hardware Acceleration.
    ****If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes '''<u>before</u>''' starting Safe Mode (In Firefox 4, Tools > Add-ons > Appearance). See: http://support.mozilla.com/en-US/kb/Using%20themes%20with%20Firefox#w_managing-themes-and-personas
    ****When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode".
    ****Test to see if the problem you are experiencing is corrected.
    *** If the problem does not occur in Safe-mode then disable all of your Extensions and Plug-ins and then try to find which is causing it
    ***#by enabling '''<u>one at a time</u>''' until the problem reappears.
    ***#You can also enable a few at a time (3-5), keeping track of what you just re-enabled to see if the problem re-occurs; this will help narrow down the possibilities if you have a large number of add-ons.
    ***#'''<u>You MUST close and restart Firefox after EACH change</u>''' via File > Restart Firefox (on Mac: Firefox > Quit).
    ***#You can use "Disable all add-ons" on the Safe Mode start window.
    **See the following for more information
    *** http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes
    *** http://support.mozilla.com/en-US/kb/Troubleshooting+plugins
    *** http://support.mozilla.com/en-US/kb/Basic+Troubleshooting
    <br />
    <br />
    '''You need to update the following:'''
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    *Shockwave Flash 10.2 r153
    *Next Generation Java Plug-in 1.6.0_17 for Mozilla browsers
    #'''''Check your plugin versions''''' on either of the following links':
    #*http://www.mozilla.com/en-US/plugincheck/
    #*https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #*There are plugin specific testing links available from this page:
    #**http://kb.mozillazine.org/Testing_plugins
    #'''Update Shockwave for Director'''
    #*NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    #*Use Firefox to download and SAVE the installer to your hard drive from the link in the article below (Desktop is a good place so you can find it).
    #*When the download is complete, exit Firefox (File > Exit)
    #*locate and double-click in the installer you just downloaded, let the install complete.
    #*Restart Firefox and check your plugins again.
    #*'''<u>Download link and more information</u>''': http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**SAVE the installer to your hard drive (save to your Desktop so that you can find it after the download). Exit/Close Firefox. Run the installer you just downloaded.
    #**Use either of the links below:
    #***https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox ''(click on "Installing and updating Adobe Reader")''
    #***''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #*After the installation, start Firefox and check your version again.
    #'''Update the [[Managing the Flash plugin|Flash]] plugin''' to the latest version.
    #*Download and SAVE to your Desktop so you can find the installer later
    #*If you do not have the current version, click on the "Player Download Center" link on the "'''Download and information'''" or "'''Download Manual installers'''" below
    #*After download is complete, exit Firefox
    #*Click on the installer you just downloaded and install
    #**Windows 7 and Vista: may need to right-click the installer and choose "Run as Administrator"
    #*Start Firefox and check your version again or test the installation by going back to the download link below
    #*'''Download and information''': http://www.adobe.com/software/flash/about/
    #**Use Firefox to go to the above site to update the Firefox plugin (will also install plugin for most other browsers; except IE)
    #**Use IE to go to the above site to update the IE ActiveX
    #*'''Download Manual installers'''.
    #**http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller
    #**Note separate links for:
    #***Plugin for Firefox and most other browsers
    #***ActiveX for IE
    #'''Update the [[Java]] plugin''' to the latest version.
    #*Download site: http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)
    #**'''''Be sure to <u>un-check the Yahoo Toolbar</u> option during the install if you do not want it installed.
    #*Also see "Manual Update" in this article to update from the Java Control Panel in Windows Control Panel: http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org/Firefox_:_FAQs_:_Install_Java#Multiple_Java_Console_extensions
    #*Java Test: http://www.java.com/en/download/help/testvm.xml

  • Ask your question.please help itunes will not launch on my computer the icon on desktop has changed to a white folder no error message appears and it appears but then disappears in task manager when the programme will not open quick time is working

    please help i need to fix my itunes it will not launch on my computer . no error message appears it simply will not run. the icon on desktop has changed to a white folder and it still appears in programmes in start menu but will not open. it appears in task manager but disappears when the programme will not open

    You music etc should not be affected by problems with the iTunes program, nevertheless it is always a good idea to backup your data.
    You haven't said if there was any error message when you tried to start iTunes. If  there was one please give it in full.
    Also check to see if QuickTime works, iTunes can not work without it. If QuickTime doesn't work, it has to be fixed before worrying about iTunes.
    Then restart your PC and open your Task manger and select the Processes tab.
    Try to start iTunes, does iTunes.exe appear on the processes tab? If so does it disappear again or remain although the programs does not open?

  • Does anyone know why this error message appears?.

    I have added some new fields within the BT111H_OPPT component, view 'Details', and they are visible in the BTADMINH context node when in the component browser.  I now need to perform some calculations based on the PROBABILITY field of the BTOPPORTH context node and place the value in one of the newly created fields in the BTADMINH context node. Therefore to me it would seem wise to place this code in the DO_PREPARE_OUTPUT method of the ZCL... controller class.,
    My code looks like so:
    * First, lets get the Probability value held in the BTOPPORTH context node
      lr_ent ?= me->typed_context->btopporth->collection_wrapper->get_current( ).
      IF lr_ent IS BOUND.
        lv_probability = lr_ent->get_property_as_string( iv_attr_name = 'PROBABILITY' ).
      ENDIF.
    * Now get the Potential volume field from the BTADMINH context node and calculate value
      lr_ent ?= me->typed_context->btadminh->collection_wrapper->get_current( ).
      IF lr_ent IS BOUND.
        lv_potvol = lr_ent->get_property_as_string( iv_attr_name = 'EXT.ZZAFL00001X' ).
    The eror message given is:
    CX_CRM_CIC_PARAMETER_ERROR - Entry parameter of method CL_CRM_BOL_ENTITY->GET_PROPERTY contains value EXT.ZZAFL00001X, which is not allowed
    The line pointed to (19)  is actually '  lr_ent ?= me->typed_context->btadminh->collection_wrapper->get_current( ).' .
    Can anyone see what might be causing this issue, because to me it looks okay.
    I added the 'EXT.' to 'ZZAFL00001X' to see if that would make a difference, which it did not and the same error message appears, which is odd. 
    My sanity is in your hands.
    Jason

    I have found the solution at long last!!!.
    When creating the new field(s) using the AET we had been accepting the default field names, like ZZALF0000nn, which we had always done in the past. However this is the first time we've had to manipulate their data via the component workbench. Anyway, as suggested by previous posts I created new fields in the AET (in expert mode) but this time gave the fields my own names, like ZZPOTENTIALVOL, then changed the code in the DO_PREPARE_OUTPUT to use these new fields/attributes and that's it, it all then worked fine. How petty is that?.
    By the way, I removed/deleted the old fields in the AET tool by clicking on the Bin icon and they are now marked as deleted, but there was a message saying that I needed to manual delete these fields. I've done this before but can't recall the transaction that is needed, can anyone help in this matter?.
    Many thanks to all.
    Jason

  • I have a Canon MX882 and more often than note get an error message saying the printer is not connected. I check the printer and the get the message that the access point is accessed. I have reloaded the software and it worked for awhile. Any ideas?

    I have a Canon MX882 printer and more often than note get an error message that says "Printer not Connected." When I check the printer itself, I get confirmation that the access point is connected. I tried reloading the software and that seemed to have solved the problem for awhile but I'm experiencing the same problem. Any ideas what is causing this?

    Did you delete all receipts with iDVD in the file name  with either a .PKG or .BOM extension that reside in the HD/Library/Receipts folder and from the /var/db/receipts/  folder before installing the new copy?  If not then do so and delete the new application also.
    Click to view full size
    Then install iPhoto from the disk it came on originally and apply all necessary updaters: Apple - Support - Downloads
    OT

  • Macbook froze while online. hard shutdown. when it restarted, an error message appeared saying finder shut down unexpectedly containing a message box with a long list of technical jibberish.  after clicking OK that it would send an error report to Apple,

    macbook froze while online. hard shutdown. when it restarted, an error message appeared saying finder shut down unexpectedly containing a message box with a long list of technical jibberish.  after clicking OK that it would send an error report to Apple, the same error message box appeared again and again every time OK was clicked.  Now the macbook will not turn on at all

    If you're able to boot, launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running Mac OS X 10.7 or later, open LaunchPad. Click Utilities, then Console in the page that opens.
    Select the most recent panic log under System Diagnostic Reports. Post the contents — the text, please, not a screenshot. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header and body of the report, if it’s present (it may not be.) Please don't post "shutdownStall" or "hang" reports.
    If you can't boot in the usual way, try a safe boot. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    During startup, you’ll see a progress bar, and then the login screen, which appears even if you normally log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Safe mode is slower than normal, and some things won’t work at all.
    Note: If FileVault is enabled under Mac OS X 10.7 or later, you can’t boot in safe mode.

  • The following error message appears when I try to create a PDF in Publisher:

    The following error message appears when I try to create a PDF in Publisher:
    PDFMaker cannot locate the Adobe PDF Printer's printer driver. Please re-install Adobe Acrobat 10.1.
    I have tried update patches to no avail.
    Can anyone please help?
    Thank you.
    Susan

    Hello Michael,
    My version of Publisher is 2010 and my OS is Windows 8.1.
    64-bit OS x64 based processor.
    I'm not too sure if this issue has arrisen when I upraded to Windows 8.1.
    My Dell printer(Dell all in one) has also stopped working due to a driver issue now not being supported.
    Thank you for taking the time to view my request.
    Kind regards,
    Susan

  • U163 error message for MG4120 printer

     for MG4120 printer, U163 error message appeared days after ink cartridge changed.

    Hi donghuiyu,
    This issue may occur if the ink cartridges are replaced prior to the ink being completely empty.  It is recommended to only replace the ink when it shows the ink is completely empty.  You can continue printing when the ink is low.  If you replace the ink too soon, it will not register the fact that a new ink has been installed.  You may continue to use the printer even though it's not indicating the ink cartridge is full.  When you get an error stating that the ink is empty, just take the ink cartridge out, turn the unit off, turn it back on, and place the ink cartridge back inside.  It should then update the ink levels accurately.  
    Alternatively, if you have an cartridge that is actually empty, you may be able to put it in the printer so it recognizes the empty tank and provides the ink tank empty warning.  You would then replace it with the new ink cartridge and the printer should determine that it was replaced and provide a full ink level indication again.
    In addition, if ink cartridges other than Canon geniuine ink cartridges are being used in the printer, or if the ink cartridges have been refilled, the printer may not recognize the ink levels properly.  Replacing the ink cartridges with new Canon genuine ink cartridges should resolve the issue if third-party or refilled Canon ink cartridges have been used.
    Hope this helps!
    This didn't answer your question or issue? Please call or email us at one of the methods on the Contact Us page for further assistance.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • HT5052 hi , i cant update mi ipod touch software, a soon as the download process in finished an error message appears

    hi , i cant update mi ipod touch software, a soon as the download process in finished an error message appears :" session time has expired" something like that

    Disabling the computer's security software during the download and update usually resolves a network timeout error.

  • Can anyone help me connect my Macbook Air to a SAMSUNG TV.  When I follow the basic instructions (Thunderbolt to HDMI connection) the screen on my computer goes grey and an error message appears inviting me to press any button to restart th

    Can anyone help me connect my Macbook Air to a SAMSUNG TV.  When I follow the basic instructions (Thunderbolt to HDMI connection) the screen on my computer goes grey and an error message appears inviting me to press any button to restart the Macbook.  When I do this nothing happens.  Only when I disconnect the computer from the TV does the Macbook allow me to login. The TV does not receive any signal from the Macbook even though I know the HDI port works fine.  Any ideas what I'm doing wrong?  Do I need to enable something on the Macbook?

    An update...
    I downloaded Apple's (rather large!) list of software updates today, and I was finally able to recognize my iPod again. I did a restore using the iPod updater from 06-2006, and all seemed to work OK. (I'm afraid to try the new one again!)
    Then I tried to re-load my music library from iTunes, and got stuck. It froze up after a while and wouldn't go any further.
    When I disconnected my iPod from my computer, I find 2 podcasts and nothing else, though iTunes told me it had transferred 600+ songs. Those 2 podcasts do play fine, and the basic iPod software all seems to be intact.
    So -- anyone get through this connection problem and have any ideas to share??
    iMac Mac OS X (10.4.7)

  • I just upgraded my mac book to 10.6.8 and downloaded the new version of itunes. When I try to open it and error message appears saying, "The iTunes Library file cannot be found or created. The default location for this file is in the "iTunes" folder.

    I just upgraded my mac book to 10.6.8 and downloaded the new version of itunes. When I try to open it and error message appears saying, "The iTunes Library file cannot be found or created. The default location for this file is in the "iTunes" folder in the "Music" folder."
    I have tried a few things but iTunes closes right after i click okay. Anyone know anything?

    Look in your Home > Music folder.  There should be an iTunes folder there and it should have a number of files and folders including one called library.itl  You want to guide iTunes to that file.  If you don't see that file or folder then in your next post you will have to be very specific as to what you do see or how you have your iTunes set up because that's where it should be according to default settings.

  • Just purchased online Adobe Acrobat XI Pro and error message appeared, but payment has been debited from my credit card already

    Hello,
    Just purchased online Adobe Acrobat XI Pro and error message appeared, but payment has been debited from my credit card already and I do not have the software, so paid for nothing.
    I am using a Mac OS X.
    Thanks for your help.
    Ossama

    [discussion moved to Acrobat Installation & Update Issues forum]

Maybe you are looking for

  • How to include page fragment dynamically in BSP

    Hi all, I want to include a page fragment dynamically in my BSP default.htm. Is it possible to give a variable (path to page fragment) in the include? Instead of using: <%@include file="../bsp_app/test.htm" %> I want to give: variable = "../bsp_app/t

  • Using a filter to find Masters, only

    I have a very large Managed Aperture library and want to filter out all the Masters while I do some cleanup = since if I then delete something it will not be a master and that won't be as much a problem. I thought of using the Adjustments are NOT app

  • Using a Samsung SyncMaster 710N with a Macbook

    Hi, Is it possible to use a macbook with the monitor listed above? I would want to close the notebook and use my LCD monitor as the monitor for the machine and occasionally use it for a second screen. Thanks for any help.

  • Implications of two GR/IR Clearing Account

    Hi Guys, my client required two GR/IR Clearing accounts instead of one. is there any implication of having two GR/IR clearing Accounts, one for import Purchase and second for domestic purchase. Pls suggest the implications of having two GR/IR Clearin

  • [OT] Book Review: A Software Engineerin​g Approach to Labview

    I ordered "A Software Engineering Approach to Labview" by Jon Conway and Steve Watts from Borders and it came in over the weekend.  I went in to pick it up and was surprised at how awful the images of the VI's were.  Most were blurry and unreadable.