PDF writer losing files

In Acrobat Pro 8 with Vista I can't print from the web as a pdf.   I click print and select PDF Writer (as normal) I then have option to name the file, and browse to where I want it to go. I do that and  then click Print ... and a pop up window then advises : "For your computer security, this file was saved to the Temporary Internet Files Folder. Do You want to open this folder?"    I select yes .. it opens a folder, but there is no pdf file in it .... If I select No ... I am left with no file anyway.
Carrying out a search of the file name also does not return the file's location ... where the heck does VISTA put the file, and how can I get it to put them where I select ?

Thank you.  I have 8.1 and my terminology is just leftover due to my many years of using the older versions.  you are correct I am not seeing "writer" but it is infact "AdobePDF" unfortunately I still can't find the files.  I did try repair and updates before I posted. but neither solved my problem.  It is just one of those things that is bugging me because it is causing me so many extra steps for a function I use so often.  I am open to any other suggestions.
Thank you for your help.

Similar Messages

  • Can I install a PDF writer such as CutePDF on my Mac?  Or, how do I create PDF files for saving in files?

    I am looking to install a PDF writer so I can capture documents and save them to a customer file.  Is there an Apple function for this or do I need to install a PDF program?

    Like Alberto Ravasio wrote, OS X contains an option to output anything you see as PDF.
    See
    Preview (Yosemite): Print PDFs and images
    So for example, if you are doing research and see an article on Wikipedia that you want to save, you go to the File menu in Safari and select Export as PDF, give it a name, and a location on your drive.  You can then open those documents with Preview or with Adobe Reader.
    Similarly, if you use Pages or Numbers or Excel or Word, you can send the output to a PDF file, similar as if you were printing it. So no, you don't need a PDF writer.
    I am looking to install a PDF writer so I can capture documents and save them to a customer file.  Is there an Apple function for this or do I need to install a PDF program?
    But if you are looking for screen scrapers or data collectors, that is something else.
    This PDF ability in OS X is a major advantage the Mac has had over the years.  It is often forgotten as to how well it really works and how flexible, along with Preview, it works.

  • Ruby: PDF::Writer can't read JPG or PNG files?

    require 'pdf/writer'
    pdf = PDF::Writer.new
    pdf.image('/home/max/pics/kiwi.png')
    Results in:
    RuntimeError: Unsupported Image Type
    from /home/max/.gem/ruby/1.9.1/gems/pdf-writer-1.1.8/lib/pdf/writer/graphics.rb:668:in `image'
    Why?
    edit - can't get rid of that mysterious newline in the code snippet ... weird? oh well, you get the idea
    Last edited by synthead (2012-08-21 22:48:47)

    Hello,
    I don't know about this error, but PDF::Writer is unsupported and it is recommended to use  Prawn[1].
    Couldn't the problem be that you are using Ruby 1.9.1 and PDF::Writer written for 1.8(just a guess).
    Sebastian
    [1] http://prawn.majesticseacreature.com/

  • Save As dialog window disappears when trying to save or use pdf writer

    When I try to create a pdf using a pdf writer/printer, or even when i try to save a pdf file, the dialog box showing where to save it appears then immediately disappears before i can choose a name or location to save the pdf.  i have tried reinstalling the reader, reooting, reinstalling the pdf writer, nothing seems to work.

    I have tried multiple pdf writers including cutepdf and a proprietary pdf writer so I am pretty sure the problem lies within adobe reader.  Especially since the problem occurs when I just try to save the pdf and not use the writer.

  • How To Store pdf or doc file in Oracle Database using Java Jdbc?

    can any one help me out How To Store pdf or doc file in Oracle Database using Java Jdbc in JSP/Serlet? i tried like anything. using blob also i tried. but i am able 2 store images in DB not files. please if u know or else if u have some code like this plz send that to me, and help me out plz. i need that urgent.

    Hi.. i am not getting error, But i am not getting the original contents from my file. i am getting all ASCII vales, instead of my original data. here i am including my code.
    for Adding PDF in DB i used image.jsp
    Database table structure (table name. pictures )
    Name Null? Type
    ID NOT NULL NUMBER(11)
    IMAGE BLOB
    <%@ page language="java" import="java.util.*,java.sql.*,java.io.*" pageEncoding="ISO-8859-1"%>
    <%
    String path = request.getContextPath();
    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <%
    try{
         Class.forName("oracle.jdbc.driver.OracleDriver");
         Connection con=DriverManager.getConnection("jdbc:oracle:thin:@192.168.1.135:1521:orcl","scott","tiger");
         PreparedStatement ps,pstmt,psmnt;
         ps = con.prepareStatement("INSERT INTO pictures VALUES(?,?)");
    File file =
    new File("D:/info.pdf");
    FileInputStream fs = new FileInputStream(file);
    ps.setInt(1,4);
    ps.setBinaryStream(2,fs,fs.available());
    int i = ps.executeUpdate();
    if(i!=0){
    out.println("<h2>PDF inserted successfully");
    else{
    out.println("<h2>Problem in image insertion");
    catch(Exception e){
    out.println("<h2>Failed Due To "+e);
    %>
    O/P: PDF inserted successfully
    i tried to display that pdf using servlet. i am giving the code below.
    import java.io.IOException;
    import java.sql.*;
    import java.io.*;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public class DispPDF extends HttpServlet {
         * The doGet method of the servlet. <br>
         * This method is called when a form has its tag value method equals to get.
         * @param request the request send by the client to the server
         * @param response the response send by the server to the client
         * @throws ServletException if an error occurred
         * @throws IOException if an error occurred
         public void service(HttpServletRequest request, HttpServletResponse response)
                   throws ServletException, IOException {
              //response.setContentType("text/html"); i commented. coz we cant use response two times.
              //PrintWriter out = response.getWriter();
              try{
                   InputStream sPdf;
                   Class.forName("oracle.jdbc.driver.OracleDriver");
                        Connection con=DriverManager.getConnection("jdbc:oracle:thin:@192.168.1.135:1521:orcl","scott","tiger");
                        PreparedStatement ps,pstmt,psmnt;
                   psmnt = con.prepareStatement("SELECT image FROM pictures WHERE id = ?");
                        psmnt.setString(1, "4"); // here integer number '4' is image id from the table.
                   ResultSet rs = psmnt.executeQuery();
                        if(rs.next()) {
                   byte[] bytearray = new byte[1048576];
                        //out.println(bytearray);
                        int size=0;
                        sPdf = rs.getBinaryStream(1);
                        response.reset();
                        response.setContentType("application/pdf");
                        while((size=sPdf.read(bytearray))!= -1 ){
                        //out.println(size);
                        response.getOutputStream().write(bytearray,0,size);
                   catch(Exception e){
                   System.out.println("Failed Due To "+e);
                        //out.println("<h2>Failed Due To "+e);
              //out.close();
    OP
    PDF-1.4 %âãÏÓ 2 0 obj <>stream xœ+är á26S°00SIá2PÐ5´1ôÝ BÒ¸4Ü2‹ŠKüsSŠSŠS4C²€ê P”kø$V㙂GÒU×713CkW )(Ü endstream endobj 4 0 obj <>>>/MediaBox[0 0 595 842]>> endobj 1 0 obj <> endobj 3 0 obj <> endobj 5 0 obj <> endobj 6 0 obj <> endobj xref 0 7 0000000000 65535 f 0000000325 00000 n 0000000015 00000 n 0000000413 00000 n 0000000168 00000 n 0000000464 00000 n 0000000509 00000 n trailer <<01b2fa8b70ac262bfa939cc786f8770c>]/Root 5 0 R/Size 7/Info 6 0 R>> startxref 641 %%EOF
    plz help me out.

  • Adobe Acrobat 9.0 Standard - PDF Printer suppress file name prompt

    Hi,
    We are currently developing a product for Autodesk Revit with regards to drawing generation/export.  Revit does not have an inbuilt PDF writer.  As such most users either use free PDF Printers or Adobe Acrobat Standard.
    We have managed to automate the naming of files using some of the free PDF printers, and suppress the file save as name prompt for each sheet in a set of prints.
    We'd also like to add support for Adobe Acrobat 9.0 Standard.  Is this possible through the Acrobat API?
    Any prompt help would be greatly appreciated as we are keen to get our product out to market very soon!
    Thanks.

    Thanks.  That's all I needed for now.  Our developer will take a look when he comes to doing that section of the product.
    Cheers.

  • Where can I find a pdf writer for my new macbook air?

    Where can I find a pdf writer for my new macbook air?

    If you'd like to create a PDF from something rather than print, you can create a pdf from any print dialog.
    ie. File > Print > click PDF button lower left > Save as PDF..

  • How can I convert a Microsoft Publisher doc to PDF when the file size is LARGE?

    I have a Microsoft Publisher document that I need converted to PDF. Typically I have no issues converting from Publisher to PDF (and usually can just do it through the "save as" feature in Publisher.) However, this particular file is laden with graphics and therefore very large. I was able to convert it once, but it made some of the graphics as blank boxes. When I try again to convert, it gives me an error message.
    Is there a way to conver a LARGE Publisher file to PDF without losing any of the images contained within the document? Please help!

    Try emptying the Temp folder. Are you using PDF Maker (not sure that is available for Publisher) or the MS plugin? If PDF Maker, try turning off the tags and reducing the amount of bookmarks needed to a minimum. As an alternative, simply print to the Adobe PDF printer -- will typically give a smaller file and not run into these creation problems for large document, but you will not get bookmarks or such in the conversion process.

  • How to load a pdf/xls/swf files in to a adf:popup

    hi
    my requirement is to open a pdf/xls/swf in a popup. howcan i get a poup with pdf/xls/swf files . presently i am using a servlet.I set the content type in the servlet as application/pdf and so on..
    I am getting data as byte stream from the data base.know how to give this bytestream/response object of the servlet to the panel window.
    In a popup i placed panel window.the struture is:
    <af:popup>
    <af:panelwindow>
    </af:panelwindow>
    </af:popup>
    thanks in advance
    Srikanth.V
    Message was edited by:
    user631950

    Hi,
    I have a similar requirement where I need to show the preview of a document in a popup.
    I have a button and I added "af:fileDownloadActionListener" into the button, then I wrote the following code in my bean for the downloadactionlistener:
    public void showPreviewDownloadListener(FacesContext facesContext,
    java.io.OutputStream outputStream) throws IOException{
    DCIteratorBinding agr = getBindingsForDCB().findIteratorBinding("xyz");
    Row row = ag.getRowSetIterator().getCurrentRow();
    String fileName = (String)row.getAttribute("FileName");
    String fileType = (String)row.getAttribute("FileType");
    BlobDomain file = (BlobDomain)row.getAttribute("FileData");
    try {
    InputStream inputStream = file.getBinaryStream();
    byte[] buf = new byte[1024];
    int count;
    while ((count = inputStream.read(buf)) >= 0) {
    outputStream.write(buf, 0, count);
    inputStream.close();
    outputStream.flush();
    outputStream.close();
    file.closeInputStream();
    docPreviewInlineFrame.setSource(fileName);
    //ADFUtils.setEL("#{pageFlowScope.docSource}", "../"+fileName);
    ADFUtils.invokePopup(docPreviewPopup,true);
    catch(IOException ioex) {
    ioex.printStackTrace();
    when I'm clicking my button, all it does is open a popup to view/download the while.
    My own popup (with a dialog and an internalFram in it) does not get invoked at all.
    Also the file that I'm referring is from DB, can anyone also suggest me how to set the source for the inline frame if the file is from DB?
    Thanks in advance,
    Swapna

  • Saving as PDF - problem with file name

    Hello everybody,
    I have a little problem. I'm making a lot of similar document with InDesign so everytime I copy/paste the latest and then rename it from windows. But when I try to save (with a custom preset) the document as PDF, everytime on default InDesign gave the name of the original document, so I have to write the right name everytime. How can I change this? I want to have on default the file name I'm working on, not the original one.
    EXAMPLE
    I copy and paste "average.indd" and then I rename it as "joe.indd". I make some changes inside JOE, save it and then try to export as PDF. When the saving window appear, the program suggest "average.pdf" as name of the PDF I'm creating.
    Thanks for your support and excuse me if my english is not that good (not my language).
    Have a nice day!
    Dario

    Ah well, it is generally accepted that the most recent PDF-export file name "sticks" and when that's the case, there isn't anything you can do about it except type in the new name you want. However, I just tried it a second time (the first time before my first post), and here, I got it to work the way you want by doing what I originally advised...
    Start new file.
    Save As average.indd
    Export > PDF...file name defaults to average.pdf
    Back in InDesign, Save As joe.indd
    Export > PDF...file name defaults to joe.pdf
    What exactly did you try, and where did the result differ from what I saw?

  • Could not write to file: C:\Program Files (x86)\Adobe\Acrobat 7.0\ActiveX\AcroPDF.NOR. ?

    Hi, I get this message (loosely translated from Swedish):
    "Could not write to file: C:\Program Files (x86)\Adobe\Acrobat 7.0\ActiveX\AcroPDF.NOR.
    Confirm that you have access to this file"
    when I try to install Acrobat standard 7.0, and after several "retry" I cannot finish the installation.
    Does anyone know why?
    Thank you,
    MIa

    Appears that you are on a Win7, 64-bit machine. AA 7 has an issue with activation since the server no longer exists for AA 7. There is a separate install at Adobe to address this issue that might solve the problem temporarily (Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3). Even if you get AA 7 installed on Win7, you will have to do workarounds to make it work. Both the print driver (Adobe PDF) and AcroTray.exe fail on Win7 and they require workarounds to be able to even use AA 7. It is strongly recommended that you get AA XI at this point.

  • Read/write external file  from remote location

    hi all,
    due to more concern about storage, we are storing some pdf/doc/jpg files in remote location, we need to write/read that files without storing in the database,
    the files would be external file. is there any procedure to do so,
    thanks in advance
    pa1

    sachinpawan wrote:
    hi all,
    due to more concern about storage, we are storing some pdf/doc/jpg files in remote location, we need to write/read that files without storing in the database,
    the files would be external file. is there any procedure to do so,
    thanks in advance
    pa1The database can only deal with files that reside on disk that is mounted to the OS that is hosting the database.

  • Write HTML Files from java application

    Hello,
    i have to write HTML files from a java application.
    I am asking if anybody can give me a hint about a good simple solution (library) which can do some of the job for me.
    i know FOP for example is good to create pdf or html from xml, but i dont want to go via xml.
    the sites i need are really very simple presents emails.
    body and maybe a link for next and pervious.
    however, thank you in advance.
    a little hint will also help :)
    Sako.

    That, too, is my question.
    Be the "server" local or remote, wouldn't JSPs still
    be the easier solution? No. it will not. because you need a server. Server for a stand alone application is not esier. according to who said JSPs are easy?
    Its very very difficult.
    >
    When answering, please clarify. I'm a bit of a newbie
    here. :)To get sence about how hard is JSP, check Struts. this is very good open source Framework to simplify the JSPs. but it still complecated enough.
    or Tapestry my lovely open srouce Framework.
    its easier than Struts. but sill complecated because of the documentation.
    All in all, using JSP is the purpose of Java in the internet. but not for me. My application will not be available in the internet, i.e. no server, i.e. no need for JSP.
    i hope that helps a little.

  • How can users print CHM or WebHelp to a PDF w/o PDF Writer driver?

    A functionality has been requested by Tech Support due to requests from customers. Apparently they want to not only be able to print sections and/or the entire help file (WebHelp and CHM), but they also want to be able to print it to PDF. Some are able to do this because they have a PDF Writer driver installed, but I think to fully provide that functionality, the customer shouldn't actually need the driver?
    is it possible to add the ability write to PDF, rather than to a printer, when doing the right-click and select to print from top level (or any level)?

    Sorry but either you need to make PDFs available or the user does need a PDF writer on their PC.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • REP-50127 Cannot write into file

    Our situation:
    DB Oracle 10.2.0.3
    Reports server version: 10.1.2.0.2
    We are generating reports in PDF and storing them in the Oracle OCM (previous IFS) system.
    Once in a while we get an error.
    The report trace gives the following:
    [2010/9/29 7:10:9:739] Exception 50127 (): Cannot write into file Invoicexxx.PDF
    oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    at oracle.reports.utility.Utility.newRWException(Utility.java:758)
    at oracle.reports.utility.Utility.copyFile(Utility.java:469)
    at oracle.reports.server.DesFile.sendFile(DesFile.java:85)
    at oracle.reports.server.Destination.send(Destination.java:484)
    at oracle.reports.server.JobObject.distribute(JobObject.java:1594)
    at oracle.reports.server.JobManager.updateJobStatus(JobManager.java:2332)
    at oracle.reports.server.EngineCommImpl.updateEngineJobStatus(EngineCommImpl.java:134)
    at oracle.reports.server._EngineCommImplBase._invoke(_EngineCommImplBase.java:94)
    at com.sun.corba.se.internal.corba.ServerDelegate.dispatch(ServerDelegate.java:353)
    at com.sun.corba.se.internal.iiop.ORB.process(ORB.java:280)
    at com.sun.corba.se.internal.iiop.RequestProcessor.process(RequestProcessor.java:81)
    at com.sun.corba.se.internal.orbutil.ThreadPool$PooledThread.run(ThreadPool.java:106)
    [2010/9/29 7:10:9:739] State 56016 (JobManager:updateJobStatus): Job 642218 status is: Executed successfully but there were some errors when distribute the ou
    tput
    REP-50159: Executed successfully but there were some errors when distribute the output
    REP-50127: FILE : Cannot write into file Invoicexxx.PDF
    [2010/9/29 7:10:9:740] State 56004 (EngineInfo:setState): Engine rwEng-1 state is: Ready
    [2010/9/29 7:10:9:741] Exception 50159 (): Executed successfully but there were some errors when distribute the output
    oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    at oracle.reports.server.JobManager.runJobInEngine(JobManager.java:1110)
    at oracle.reports.server.ExecAsynchJobThread.run(ExecAsynchJobThread.java:54)
    [2010/9/29 7:10:9:741] Exception 50159 (): Executed successfully but there were some errors when distribute the output
    oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    at oracle.reports.server.JobManager.runJobInEngine(JobManager.java:1110)
    at oracle.reports.server.ExecAsynchJobThread.run(ExecAsynchJobThread.java:54)
    There is enough diskspace available so that's not the issue.
    Does anybody know what triggers the error and how we can avoid it?
    Edited by: vccservice on Sep 30, 2010 11:02 AM

    no freespace in the tablespace is also the reason for this error

Maybe you are looking for

  • Importing FCP7 project file into premiere crashes premiere

    Hi there, I am trying to export a fcp 7 project file as an xml file in order to import it into Premiere Pro.   Once I try importing XML into premiere it crashes the program.  I called Adobe and they say there is something wrong with my FCP project. 

  • Problem in cancelling a goods issue with WS_REVERSE_GOODS_ISSUE

    Hi all, I use the function module WS_REVERSE_GOODS_ISSUE in order to cancel a goods issue but most of the times it does not function as expected. I call the function module as follows:   CALL FUNCTION 'WS_REVERSE_GOODS_ISSUE'     EXPORTING       i_vb

  • Burning playable DVD from VIDEO_TS Folder

    A friend of mine had a DVD Demo Reel that was damaged and wouldn't play, so i was able to rip the files (VIDEO_TS) folder onto my hard drive from the DVD using MacTheRipper. Is there a program (preferably free) that i can burn the VIDEO_TS folder to

  • Unable to save Planned Activites created in Maintain Applicant Activites

    Hello to all SAP Experts, I am now trying out to Maintain Applicant Activities and create "Follow-up activies" for my particular applicant However i met this error when trying to save the planned activites: _Record 000000274003    00 2010071920100719

  • Calling another application from a java program

    Hi, Java ppl. I wanted to know how can I call another program say a help application or an exe from a java program. anyone with any advice or a piece of code would help. Thanks Pradeep