SendMail function doesn't work

I have a real problem. We have a Win7-64bit build with Office 2010 and Adobe Reader XI (11.0.0.379). The functionality to send a pdf directly from Reader via outlook just doesnt work. The error you get is "The file xxxxxx.ost cannot be opened". Initially we issued to our users to use a workaround of saving the file locally and attaching it to an email. Well the business is tired of this and its unacceptable.
Our Reader install is done through App-V. Initially we thought that was the problem, however a local install of the version behaves the same.
Another reader like Foxit works perfectly, in fact installing Reader 9.5 works fine.
I tried 11.4 but that doesn't work.
Does anyone have a fix for this. I'd rather stick with Adobe for a Reader but I can't if this functionality isn't fixed. Maybe its time to move away from the other suites like Acrobat and Creative also.

Hello Nick,
We have the same problem.
Do you have a solution for this problem ?
Best regards,
Jeroen Blok

Similar Messages

  • The to_date function doesn't work ?

    Hello
    I don't know why my to_date function doesn't work on my pc.
    my statement is pretty complex so i just tried simple one
    select to_date('10-Jan-2006','dd-mon-yyyy') from dual;
    but even this one doesn't work it says it is invalid month
    howcome?
    is it because my Windows XP (not english version) doesn't recognise month Jan?
    i tried it another place it worked
    so is there any language pack / patch i need to install? ?
    so does OS matters?
    or how to fix this..please help me

    By default SQL Developer picks up it's language settings up from (on Windows) the Regional and Language Options. You can see what it has set by querying the NLS_SESSION_PARAMETERS view.
    Assuming you don't want to change to using DD-MM-YYYY formats for your months or change your regional settings on your PC, you need to tell SQL Developer which language you want, which you can do by adding the following lines to the file sqldeveloper\jdev\bin\sqldeveloper.conf:
    AddVMOption -Duser.language=en
    AddVMOption -Duser.country=US

  • Cannot print with a Samsung ML2160 printer (mono laser) and Pages. Print function doesn't work, only drag and drop in printer's queue

    Hello,
    I just purchased a Samsung ML2160 printer and it doesn't work with nor my Pages program, nor the Preview (to print PDF). No matter the way I tried, the Print function doesn't work and I cannot neither print or even enter the printer preferrences menu! My MacBook Pro has worked before with other printers, but now with the Samsung it doesn't work at all... Though, if I drag and drop a document, jpg, pdf in the printer queue, it prints just fine, but that method gives me absolutely no freedom to the printing... Could it be something from the Computer -> Machintosh HD -> Library -> Printers? Because a friend of mine was recently trying to save me some disk space, and therefore erasing part of the HP printer (to remove the previous printer I owned)...
    If anyone has any idea, that would be much appreciated
    Thank you in advance

    Do the sensible thing, as you say neither Preview nor Pages print, try other programs eg TextEdit. If none of them print then it is a System problem and very likely the printer drivers are AWOL or were never installed.
    Go to Samsung's website and download their software for the Mac:
    http://www.samsung.com/uk/consumer/print-solutions/print-solutions/mono-printers /ML-2160/XEU-support
    http://www.samsung.com/uk/support/model/ML-2160/XEU-downloads
    Peter

  • Since I got my new fixed disk my scan function doesn't work (HP Photosmart Premium All-in-One-Drucker - C309g), what should I do

    since I got my new fixed disk my scan function doesn't work (HP Photosmart Premium All-in-One-Drucker - C309g), what should I do

    Check whether you have the latest driver:
    Printer and Scanner software available for download:
    http://support.apple.com/kb/HT3669?viewlocale=en_US

  • I upgraded my 3 yr old iMac to Snow Leopard and now my HP C4150 Scanning function doesn't work (not recognized).  I downloaded updated Drivers from the HP site, but still no joy.  Any suggestions?

    I upgraded my 3 yr old iMac to Snow Leopard (OS X 10.6) and now my HP C4150 Scanning function doesn't work (not recognized).  I downloaded updated Drivers from the HP site and installed them, but still no joy.  Any suggestions?

    aspaceman,
    Perhaps I owe you an apology.   Having re-read that downloading from HP was unsuccessful I feel uncomfortable.  Can I suggest you update your 10.6 system (as noted in your profile) to 10.6.8 (if it is not already there) by using the
    Mac OS X 10.6.8 Update Combo v1.1 combo update plus any software updates that then apply.  

  • Lightroom 5.7.1, Yosemite OS X - Synchronise Folder function doesn't work in Lr. Is there a compatibility issue? I can see the folders/images in Finder but when trying to synchronise folders in Lr it does not recognise that there are any images and theref

    Lightroom 5.7.1, Yosemite OS X - Synchronise Folder function doesn't work in Lr.
    Is there a compatibility issue? I can see the folders/images in Finder but when trying to synchronise folders in Lr it does not recognise that there are any images and therefore unable to import to catalogue. Anyone has any idea how to make it work. Thanks a lot.

    Hi Elba,
    Thank you very much for your reply. Not sure, however, that we are talking about the same problem.
    I am trying to perform the same function in Lr that I have been doing for many years in the past and has only been a problem in the last few days (possibly coinciding with upgrading to Yosemite, trying to find out whether that is the problem)
    I am not intending to sync any files with Creative Cloud but only trying to use 'Synchronize Folder' function in Lr. Normally, I would right click on a particular folder in Lr catalogue and click on that function to check that the Lr Catalogue is perfectly matching my drives where the original photos are actually stored.
    The problem that I only started to encounter is that I can see the files on the actual drives but they do not appear in my Lr Catalogue and they are completely invisible to Lr. I simply can not get Lr to recognise them and then import them to catalogue.
    If for example, I export images to Ps and then save and close them, they do appear on my drive but are invisible to Lr and I can't get them imported into the catalogue. Import to folder also not producing any results as they are still invisible to Lr.
    Completely baffled by it. Any idea what could be the reason?
    Kind regards,
    Nik

  • Sort function doesn't work E12

    the sort function doesn't work half the time on Elements 12 organizer.

    What about FUNCTION CLOCK_INFormula
    RETURN NUMBER
    IS
        l_hours_worked  NUMBER;
        l_to_return     NUMBER;
    BEGIN
        l_hours_worked := TO_NUMBER(NVL(:ATX_CLOCK_IN,'0'));
        IF (MOD((l_hours_worked - 0.02),0.25) = 0) THEN
            l_to_return := TRUNC((l_hours_worked - 0.02) * 4) / 4;
        ELSE
            l_to_return := TRUNC((l_hours_worked + 0.23) * 4) / 4;
        END IF;
        RETURN (l_to_return);
    EXCEPTION  
        WHEN VALUE_ERROR THEN
            RAISE_APPLICATION_ERROR ( -20100
            ,   'ERROR, Cannot represent '
            ||  :ATX_CLOCK_IN
            ||  ' as a number.');
    END CLOCK_INFormula;?
    This function assumes :ATX_CLOCK_IN is always positive.
    T.

  • Tap function doesn't work, recovered files in bin etc

    Hi
    I'm using Mac Book Pro 13' - Mac OS 10.6.8
    1) Every time, I switched on my laptop, the one finger (tap to click) function doesn't work (although I have set it up).
    I have to go to 'systems preferences' to set it up again.
    2) Why is there 'Recovered files' in the trash bin each I switched on my laptop? How to get rid of it?
    3) Sometimes when I work using Word 2011, it takes a long time to save (the little icon will be swirling and swirling) and then I had to force quit and lose unsaved info. Why does this happen and how to avoid it from happening?
    Pls help me. I'm in the middle of my thesis submission and urgently need solutions to my Mac problems. Thanks!

    Reinstall Photoshop. That often fixes the issue.

  • Preview function doesn't work in Cap2

    I just installed Captivate2. In the project I'm working on,
    the Preview function doesn't work. Or rather, it works
    sporadically... sometimes it does, and --- much more often -- it
    does not. What happens instead is, the "generating slides" message
    appears, and the progress-bar begins, but then suddenly the
    message/progress window disappears, WITHOUT generating the swf file
    and without doing any kind of preview. It happens on all the
    various options of the Preview function.
    It does work about one time in every ten attempts.
    This surely isn't acceptable... Anyone else encountering
    this???

    Hi UncleErnie
    By chance have you fiddled with the slide properties of any
    of the slides? One of the new options available in version 2 is to
    apply navigation options that cause slides to behave certain ways.
    So it stands to reason that if a slide was configured to jump to
    the end of the movie and the end of the movie option was to close
    the movie... Well, hopefully you see what I mean.
    Another question I would have is where are you editing your
    project? Are you possibly saving it to the company LAN and editing
    it using Captivate to make edits while in that location? If so,
    this is normally bad practice. Try moving the project locally and
    see if the issue resolves.
    Cheers... Rick

  • Why the italic function doesn't works in my Pages? I have already installed the actualization and it keeps not working...

    Why the italic function doesn't works in my Pages? I have already installed the actualization and it keeps not working...

    drag the other clip 'over' the main clip
    the 2nd clip has to be selected/yellow border...
    then you're prompted in the Inspector with the several options...

  • Snapshot function doesn't works in APEX 9.3.2, if the Aero Design is turned on

    Hello,
    the Snapshot function doesn't works in APEX 9.3.2, if the Aero Design is turned on. Once you click on tools > Snapshot > raster, the window where the displayed 3D model will be white.
    The same happens when  you click on the taskbar.
    There one other option than to turn off the Aero Design?
    System:
    OS: Windows 7 32bit
    APEX 9.3.2
    nvidia Quattro NVS160
    4GB RAM
    Dell Latitude E6400
    Thanks,
    Olli

    Hello,
    the Snapshot function doesn't works in APEX 9.3.2, if the Aero Design is turned on. Once you click on tools > Snapshot > raster, the window where the displayed 3D model will be white.
    The same happens when  you click on the taskbar.
    There one other option than to turn off the Aero Design?
    System:
    OS: Windows 7 32bit
    APEX 9.3.2
    nvidia Quattro NVS160
    4GB RAM
    Dell Latitude E6400
    Thanks,
    Olli

  • Scroll up function doesn't work at all.

    My Blackberry Bold9930 is having some issues and it is my second one this one is about two months old. First of all it has a dead pixel and I know you can not do anything about that. The other issue is with the track pad in some windows scroll up/down function doesn't work at all but left to right works. In some windows the scroll up/down function it will but others will not WHY? Windows that the function will not work that I know of are any pop up winds and the tap page in the browser some options pages etc. Why is this? Yes I have done restarts latest software I have done everything.

    Can you scroll using the touchscreen?
    Whenever my trackpad scroll "sticks" or seems to not work, it's because I have too many browser windows open, or too many apps open.  Which browser are you using?
    Try closing apps, closing windows, and leaving open only those you are actually using at the time.  A battery pull (quick pull in my case) usually cures a sluggish phone every time for me.

  • In Yosemite, Magic Mouse double-click function doesn't work

    On my iMac running Yosemite 10.10.2, the double-click function on the Magic Mouse no longer works. So to open a folder, or anything for that matter, I must always do click-control ---and that doesn't work for everything. For example, I can't double click on a character in Glyphs, so this renders Glyphs useless. And so on... I have gone into preferences to see if anything was amiss in the settings, but everything checked out fine. Is there a fix for this, or do I have to wait for the next upgrade for Yosemite? Help! Thanks... --Royce

    What's the answer to this mouse problem, please? Why does my double-click no longer work on my magic mouse since downloading Yosemite 10.10.2 to my iMac? 
    What's up Apple?
    Mark

  • 'Find' function doesn't work on some HP documents

    For some pdf doc's I downloaded from HP, if I copy some characters from the text and then paste them into the Find box, the characters show up as hieroglyphs (mostly squares) in the Find box. And then actually executing the Find using those characters doesn't work, because it can't find the very word that I copied them from! On top of that, if I manually type a word into the Find box (showing normal letters), it won't find it even though I can see it within the text on the page showing on the screen. Very strange! In documents other than these old HP documents, the Find function works fine.
    I looked into the document properties (menu: File >> Properties >> Fonts) and see that there are 9 fonts that have names I have never heard of before, and those fonts say "(Embedded Subset)" after the font name and "Encoding: Custom" in the font descriptions. There were a few normal fonts listed before these for that document as well.
    Anyone have any idea what is going on?
    - Brad

    It's hard to say without seeing the actual, source content, but given what you are describing, I would venture a guess that the source content is of too poor a quality to OCR reliably and accurately.  To test this theory, after running OCR, identify a term that you can confirm is present, but that the search feature cannot identify.  Then, copy and paste that term into Word or Notepad.  What I expect you will note is that a "0" (zero) has been identified as an "8," and other things of that nature.  OCR processing is garbage in, garbage out, so the source always has to be considered.  Repeat this process across the document to see if experience similar results. 
    You don't describe how exactly you are transferring the microfilm "images" to PDF, so it's difficult to say if that process is at issue or could be improved.  I suspect that's contributing to the problem, though.
    Finally, with regard to the degraded image quality, you want to make sure you are selecting "Searchable Image (Exact)" from the OCR dialogue.  ClearScan or any type of downsampling will likely cause or contribute to the type of issue you are describing.  In a situation with low-quality source material, you would not want to use these other options.
    Hope that helps!
    Jason Covey
    PDF Litigation Solutions, LLC
    www.pdflitigationguide.com

  • HP Deskjet 9600 Won't Print with 10.4.11 & Find function doesn't work.

    Hi, there seems to be some link between the find function not working and HP printers not working in Tiger. I read this forum - http://209.85.215.104/search?q=cache:-v3OvLGNYBwJ:forums.cnet.com/5208-6126_102- 0.html%3FforumID%3D10%26threadID%3D271686%26messageID%3D2667189find+function+not+working+intiger&hl=en&ct=clnk&cd=6&gl=us - and it seems like others have had this problem. Is there any other solution other than Archiving and Reinstalling system software? I don't have enough HD space to do that...?...I only have 1.74G. I've heard you need at least 10G available. Is that true? Thanks.

    It is not obvious the problems are related. I read the thread and one user had both issues but the others didn't seem to.
    Does Spotlight work?
    What exactly happens when you try to print?
    Have you tried repairing permissions yet? (/Applications/Utilities/Disk Utility - highlight your HD on the left and choose the First Aid tab and the repair permissions option.)
    If that doesn't work, see if the problem occurs in another account. If you are the only user, create another user in the Accounts pane of System Preferences.
    Do you have HP software installed or are you just using the drivers which come with OS X?
    - cfr

Maybe you are looking for

  • Mail with Yosemite OS doesn't work fully with Hotmail IMAP

    First of all my question: How do I set up Mail properly in Yosemite OS so it works fully with Hotmail IMAP? My problem: I can receive and send mails through the hotmail IMAP account but I am not able to search inside mail content, mail headers or any

  • System Copy and BW Indexes

    Our Basis Admin reports errors on the "P" indexes (on the "E" fact table) while doing a refresh of our sandbox sysem from Dev. It complains about the indexes being redundant, and it does not create them, even though they're necessary. Has anyone else

  • Can't purchase from App Store on my ipad

    Today I tried to purchase from App Store on my ipad, but get a dialogue box that says cannot get URL. Not a problem on iPhone

  • Sendmail under smf

    Hi All I noticed if I kill only one of the two sendmail processes that are started under svc:/network/smtp:sendmail, it will not be restarted. Only when both processes are terminated would the restart happen. Is this the expected behaviour and can th

  • IMovie transfer to Final Cut Pro?

    I'm using iMovie....can I transfer what I have created to Final Cut Pro?