HELP - How can I default PDF printing to use Custom Scale 97%?

We just upgraded an old computer to new hardware.  The old machine automatically defaulted all PDFs to print to Custom Scale 97%.  Because of our letterhead it's critical that this value remain defaulted to prevent wasting large amounts of stock.  How can we default this setting again in Reader XI?

As an update, I got this working on my local machine.  Unfortunately it isn't taking on the print machine yet.  I made the following registry changes:
bprintExpandToFit (1)
bprintSetPageSize (97)
bprintScaling (2)
Locally it works using version 11.0.06.  The print machine keeps re-setting the registry values however.
Any help would be GREATLY appreciated.

Similar Messages

  • How can we tell the printer to use a different paper cartridge

    Hello all,
    We are using t.code MN05 to assign a printer to each Purchase group. How can we tell the printer to use a different paper cartridge so that purchase orders ( output type ZNEU, ZEU, ZEN) can be printed on a paper with company logotype. Local team are removing most of the printers an we have only one multifunction printer availabel for a large number of employees.
    Thank you for your suggestions

    Hi,
    I can help you about how to use different Paper Tray's but different cartridge case I am not sure...

  • How to set default PDF print locations to be same as source file

    Is it possible to make the "Save to" location for files created using the Adobe PDF print driver to be the same location as the source file?
    When I checked the prefs dialog box in the Adobe PDF print driver, the only setting I found was to make "PDF Output Folder" either the "My Documents" folder or "Prompt for PDF File Name." I wish there were a third option that said "Same as source file."
    -Danny

    Hi Daniel,<br /><br />Yes, it is possible to do so.<br /><br />Here is the solution:<br /><br />1) Open the PDF.<br />2) File->Print<br />3) Click the Properties button available on Print Dialog Box.<br />4) Select the Adobe PDF Settings Tab and you will find static text "Adobe PDF Output Folder", Go for "Browse" button available against that and select your preferred location.<br />5) Now the drop down menu will display all the options i.e. "My Documents" , "Prompt for PDF File Name" and "<Your selected Option>".<br /><br />I hope this will help resolve your issue.<br /><br />Thanks,<br />Atul Agarwal<br />Adobe Systems

  • How can i reinstalling pdf printer after acrobat XI evaluation installation ?

    Hi ,
    Sorry for my bad english ....
    Having a lot of problem with acrobat 8 pro (unable to desinstall/reinstall), i fanally decides to install the evaluation version acrobat XI .
    Now i can open my pdf files and also save as pdf files my office files but i can't directely print on my adobe pdf printer ( i can't see it on my printers list).
    I 've tried to reinstall this printer (new port) but it doesn't work .
    Doesn't anybody have a (good) idea ?
    Note : the 'save as' is very long (almost 3 mns for a file ).....
    Thanks .
    Hervé

    Moving this discussion to the Creating, Editing, & Exporting PDFs forum.

  • Help: How to crop (to PDF print) a full bleed document?

    I have a document which is sized for full bleed printing. I would also like to make PDF prints of this document, but if I simply print, then everything will be off by a little. Is there a non-destructive way to 'crop' the document back to the paper size?

    Do Save a copy, PDF, and in the Marks and Bleeds section, uncheck the printers marks, uncheck Use Document Bleed.
    Unless I am not understanding...
    Mike

  • How can I disable color print when using airprint?

    How can I print from my iPhone or iPad in black and white only, so as to save my color ink?  I am using HP Photosmart 5510.  I can't see how airprint gives that option. Is there an app out there for this?

    That is a function of your printer, you can set your printer to be B&W via it's front panel settings.

  • How can i set  "Createdby" attribute  When using Custom JheadStart Security

    Hello
    We do not use JASS for Authentication , please help us how can i set createtby attributes with jhs.username in application for any entity object?
    thanks

    See a similar question at History Attributes when using Custom Authentication Type

  • How can I default Product name in a custom field in SR

    While creating a Service Request, I am trying to save the Product name in a custom field using defaulting options. For some reason it is not working, when i tried product id, it works!! I am trying to pass [<Product>] to that custom field. Any suggestions how I get the product name?

    Arvindh, this is indeed a join field problem. Product is joined to SR through Product Id. Unless the product id exists, the SR has no knowledge of any other fields of that product record. We are aware of this issue and we are investigating a solution.

  • How can i plot a histogram with using the results of Line Length

    PLS HELP.How can i prepare a histogram with using the results of line length code(It is somewhere in the middle).
    This is a final exam take-home question. I would appreciate if you can help?
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import java.text.*;
    import java.io.File;
    public class WordAnalyser extends JFrame implements ActionListener
    private JMenuItem jmiAc, jmiSil, jmiCikis, jmiAnaliz, jmiHakkinda, jmiKullanim;
    private JTextArea jta1, jta2;
    private JFileChooser jFileChooser = new JFileChooser();
    File hafizada;
    File aktarilan = new File("Sonuc.txt");
    // Main method
    public static void main(String[] args)
    WordAnalyser frame = new WordAnalyser(); /* Ana ekran olusturulur */
    frame.setSize(400, 300); /* Degerleri belirlenir */
    frame.setVisible(true); /* Gorunebilirligi ayarlanir */
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    public WordAnalyser()
    setTitle("Serkan Ozgen Dosya Inceleme Programina Hos Geldiniz");
    JMenuBar mb = new JMenuBar();
    setJMenuBar(mb);
    JMenu fileMenu = new JMenu("Dosya");
    fileMenu.setMnemonic('F');
    mb.add(fileMenu);
    JMenu helpMenu = new JMenu("Degerlendirme");
    helpMenu.setMnemonic('H');
    mb.add(helpMenu);
    JMenu kullanimMenu = new JMenu("Kullanim Kilavuzu");
    mb.add(kullanimMenu);     
    fileMenu.add(jmiAc = new JMenuItem("Ac", 'A'));
    fileMenu.add(jmiSil = new JMenuItem("Sil", 'S'));
    fileMenu.add(jmiCikis = new JMenuItem("Cikis", 'C'));
    helpMenu.add(jmiAnaliz = new JMenuItem("Analiz", 'D'));
    helpMenu.add(jmiHakkinda = new JMenuItem("Hakkinda", 'H'));
    kullanimMenu.add(jmiKullanim = new JMenuItem("Kullanim"));     
    getContentPane().add(new JScrollPane(jta1 = new JTextArea()), BorderLayout.CENTER);
    getContentPane().add(jta2 = new JTextArea(), BorderLayout.SOUTH);
    jmiAc.addActionListener(this);
    jmiSil.addActionListener(this);
    jmiCikis.addActionListener(this);
    jmiAnaliz.addActionListener(this);
    jmiHakkinda.addActionListener(this);
    jmiKullanim.addActionListener(this);
    public void actionPerformed(ActionEvent e)
    String actionCommand = e.getActionCommand();
    if (e.getSource() instanceof JMenuItem)
    if ("Ac".equals(actionCommand))
    Ac();
    else if ("Sil".equals(actionCommand))
    Sil();
    else if ("Cikis".equals(actionCommand))
    System.exit(0);
    else if ("Analiz".equals(actionCommand))
    sayim();
    else if ("Hakkinda".equals(actionCommand))
    JOptionPane.showMessageDialog(this,
    "!!!! Bu program text analizi gerceklestirir. Her hakki saklidir SERKAN OZGEN!!!!",
    "Bu program hakkinda",
    JOptionPane.INFORMATION_MESSAGE);
    else if ("Kullanim".equals(actionCommand))
         JOptionPane.showMessageDialog(this,
         " Ilk once dosya menusunden Ac i tiklayarak analiz etmek istediginiz Dosyayi seciniz (Lutfen uzantisi *.txt \nveya *.log olsun). Daha sonra Degerlendirme menusunden analizi tiklarsaniz dosyanizda kac adet rakam, harf, \ncumle ve kelime oldugunu gorebilirsiniz. Simdiden kolay gelsin",
         "Programin kullanim detaylari",
         JOptionPane.INFORMATION_MESSAGE);
    private void Ac()
    if (jFileChooser.showOpenDialog(this) == JFileChooser.APPROVE_OPTION)
    hafizada = jFileChooser.getSelectedFile();
    Ac(hafizada);
    // Acilan Dosyayi ana ekranda gostermeye yariyan bir method
    private void Ac(File file)
    try
    // Acilan dosyayi okuma ve ana ekranda gosterme
    BufferedInputStream in = new BufferedInputStream(new FileInputStream(file));
    byte[] b = new byte[in.available()];
    in.read(b, 0, b.length);
    jta1.append(new String(b, 0, b.length));
    in.close();
    catch (IOException ex)
    // Temizle tusunun hangi ekranlara etki edecegini secme
    private void Sil()
    jta1.setText("");
    jta2.setText("");
    private void sayim()
    int buff;
    int sayac = 0;
    int Cumleler = 0;
    int Kelimeler = 0;
    int Karakterler = 0;
    int Satirlar = 0;
    int Rakamlar = 0;     
    boolean start = true;
    int linenum = 0;     
    try
    FileInputStream instream = new FileInputStream(hafizada);
    FileOutputStream outstream = new FileOutputStream(aktarilan);
         BufferedReader infile = new BufferedReader(new InputStreamReader(new FileInputStream(hafizada)));
    PrintStream out = new PrintStream(outstream);
         out.println("---Kelime Avcisinin Sonuclari---");
         String line = infile.readLine();
         while (line != null){
         int len = line.length();
         linenum++;
         line = infile.readLine();
         out.println("Line Length :"     + linenum + "\t" +len);
    while ((buff=instream.read()) != -1)
    switch((char)buff)
    case '?': case '.': case '!': /* Eger "?", "." veya "!" gorurse program cumleleri ve kelimeleri arttirir*/
    if (start == false)
    Cumleler++;
    Kelimeler++;
    start = true;
    break;
    case ' ': case '\t': case ',': case ';': case ':': case'\"': case'\'': /* Eger /t,;:\ ve \" bu isarteleri goruruse program kelimeleri arttirir */
    if (start == false)
    Kelimeler++;
    start = true;
    break;
              case 'n': case '\n': /* Eger \n gorurse satirlari arttirir */
              if (start == false)
                   Satirlar++;
                   Kelimeler++;
                   start = true;
              break;
    default:
    if (((char)buff >= 'a' && (char)buff<='z')|| /*a-z, A-Z veya - degerlerini gorurse karakterler arttirilir */
    ((char)buff >= 'A' && (char)buff<='Z')||
    ((char)buff == '-'))
    Karakterler++;
    if ((Kelimeler % 50) == 49)
    if (start == true)
                   out.println();     
    out.print((Kelimeler+1) + " ");
    out.print((char)buff);
    start = false;
              if ((char)buff >='0' && (char)buff <='9') {  /* 0-9 gorurse rakamlari arttiri */
                   Rakamlar++; }
    }// switch
         }//while
    instream.close();
    out.println();
    out.println();
    out.println("Karakter sayisi: " + Karakterler);
         out.println("Kelime sayisi: " + Kelimeler);
    out.println("Cumle sayisi: " + Cumleler);
         out.println("Satir sayisi: "+ Satirlar);
         out.println("Rakam sayisi: "+ Rakamlar);
    outstream.close();
    try
    BufferedInputStream in = new BufferedInputStream(new FileInputStream(aktarilan));
    byte[] b = new byte[in.available()];
    in.read(b, 0, b.length);
    jta2.append(new String(b, 0, b.length));
    in.close();
    catch (IOException ex)
    catch (Exception e)
    System.out.println(e);
    }

    Why is it that you're not interested in IOExceptions?
    catch (IOException ex)
    } Empty catch blocks is a hallmark of foolish Java code. At least print out the stack trace.
    %

  • There are hidden pages in the PDF form I have.  How can I see and print all without clicking on the

    I have hidden pages in the PDF form I'm using (but didn't create).  How can I see and print all the pages at once without clicking on the "next page" button.  In the initial view, there are four pages, but if I click the "next page" button, there are a total of 12 pages in this document.  This is three budget years, each year being 4 pages long.

    You're most likely dealing with a dynamic XFA form created in LiveCycle Designer. You can open it, click the button, and save it, and it will most likely be 12 pages when next opened, but it depends on how the form is set up. The ability to make edits to an XFA form in Acrobat is very limited, especially for dynamic forms, so things like flattening aren't possible.
    If it's not an XFA form, you'd still need to click the button at least once and save. To say for sure what's possible, I'd need to see the document. Can you post it somewhere?

  • I have adobe CS 5.1 and recently (after an update) it is giving me an error (Could not save...because of a program error) every time I try to save my work as a PDF   Help how can I get this resolved??

    I have adobe CS 5.1 and recently (after an update) it is giving me an error (Could not save...because of a program error) every time I try to save my work as a PDF>  Help how can I get this resolved??

    Run the cleaner, reinstall.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    And don't bother with running any updates unless you really need them or they fix a critical issue relevant to your workflow.
    Mylenium

  • How can I one-off  print many files as pdf file in FrameMaker?

    In FrameMaker,I open many files, these files need to print pdf files,How can i one-off print these opened files as pdf files?
    thanks Mike's reply:Why not put them in a book?
    of course,When I put them in a book ,They can print as one pdf file,but I want to print one opened file to one pdf file,are there anthoer methods to deal with the difficult problem. thank you!

    the error is as follows:
    Internal Error 8004,8118829,8121705,8110450,Framemaker has detected a serious error and must quit.
    the txt file's content is as followss:
    === Header Begin ===
    Internal Error: 8004, 8118829, 8121705, 8110450
    FrameMaker 8.0.0 for Intel
    Build: 8.0p236
    Window System: MSWindows
    Operating System: Windows NT 5.1 (major.minor.build: 5.1.2600 Service Pack 2)
    Generated on: 2008年7月2日 9:48:41
    To file: c:\program files\adobe\framemaker8\FrameLog_08.07.02_09.48.41.txt
    === Header End ===
    === Stack Trace Begin ===
    $7be22d
    $7bed69
    $7bc172
    $70eee4
    $762cbc
    $49e527
    $4ad95f
    $4ada53
    $690e21
    $69121d
    $4036ae
    $40371e
    $4037ef
    $40388b
    $680917
    $498797
    $498cd3
    $5f398a
    $77d18724
    $77d18806
    $77d1b4b0
    $77d1fd09
    $7c92eae3
    $77d201d7
    $77d1ff63
    $5f37f3
    $498c80
    $45b687
    $45bec6
    $41d3a8
    $42323d
    $423ce3
    $7a4780
    $79be8c
    $641acc3
    $6421b18
    $63616fb
    $63615f8
    $63614f8
    $6361dd0
    === Stack Trace End ===
    === Open Window List Begin ===
    # not implemented
    === Open Window List End ===
    === Recent Commands Begin ===
    === Recent Commands End ===
    === Recent API Calls Begin ===
    # not implemented
    === Recent API Calls End ===
    === Windows Relocation Information Begin ===
    Application: 00400000
    FrameMaker.exe: 00400000 007aa000
    ntdll.dll: 7c920000 00094000
    kernel32.dll: 7c800000 0011d000
    ADVAPI32.dll: 77da0000 000a9000
    RPCRT4.dll: 77e50000 00091000
    Asn.er.dll: 10000000 0003c000
    OLECLI32.dll: 71d90000 00015000
    USER32.dll: 77d10000 00090000
    GDI32.dll: 77ef0000 00047000
    MPR.dll: 71a90000 00012000
    SFTTR32.dll: 00380000 00021000
    COMCTL32.dll: 77180000 00103000
    msvcrt.dll: 77be0000 00058000
    SHLWAPI.dll: 77f40000 00076000
    comdlg32.dll: 76320000 00047000
    SHELL32.dll: 7d590000 007f4000
    FMDBMS32.dll: 003c0000 0002f000
    ole32.dll: 76990000 0013d000
    OLEAUT32.dll: 770f0000 0008b000
    oledlg.dll: 74c90000 00020000
    VERSION.dll: 77bd0000 00008000
    WINSPOOL.DRV: 72f70000 00026000
    urlmon.dll: 420b0000 00127000
    iertutil.dll: 41d50000 00045000
    NETAPI32.dll: 5fdd0000 00055000
    WS2_32.dll: 71a20000 00017000
    WS2HELP.dll: 71a10000 00008000
    epic_eula.dll: 00bb0000 00024000
    epic_pers.dll: 00be0000 0001f000
    asneu.dll: 00c00000 00020000
    epic_regs.dll: 00c20000 00029000
    WININET.dll: 41fd0000 000d0000
    Normaliz.dll: 003f0000 00009000
    AdobeUpdater.dll: 00c50000 0007e000
    BIB.dll: 00ce0000 0004a000
    SVGRE.dll: 6f130000 00325000
    JP2KLib.dll: 00d50000 00071000
    MSVCR80.dll: 78130000 0009b000
    icuuc28.dll: 4a800000 0008f000
    icudt28l.dll: 4ad00000 0083a000
    MSVCR71.dll: 7c340000 00056000
    icuin28.dll: 4a900000 000a2000
    icuio28.dll: 4ab00000 0000c000
    MSVCP71.dll: 7c3a0000 0007b000
    AdobePDFL.dll: 00de0000 00493000
    AdobeXMP.dll: 01290000 00061000
    BIBUtils.dll: 01310000 00040000
    ACE.dll: 01360000 000ca000
    AGM.dll: 01440000 00506000
    ARE.dll: 01960000 0004b000
    CoolType.dll: 019c0000 00284000
    AXE8SharedExpat.dll: 01c60000 0002d000
    XAPToolkitRelease.dll: 01ca0000 0008b000
    IMM32.DLL: 76300000 0001d000
    LPK.DLL: 62c20000 00009000
    USP10.dll: 73fa0000 0006b000
    MSCTF.dll: 74680000 0004c000
    shfolder.dll: 76750000 00009000
    miscr3.dll: 305e0000 00016000
    fssync.dll: 30480000 0000e000
    fmres.dll: 02b80000 0016f000
    fmdlg.dll: 02cf0000 0005a000
    fmcustom.dll: 02d50000 00024000
    msctfime.ime: 73640000 0002e000
    UxTheme.dll: 5adc0000 00037000
    adobe_caps.dll: 02e90000 00037000
    MSVCP80.dll: 7c420000 00087000
    SETUPAPI.dll: 76060000 00156000
    NTMARTA.DLL: 76cb0000 00020000
    WLDAP32.dll: 76f30000 0002c000
    SAMLIB.dll: 71b70000 00013000
    adobe_epic.dll: 02fe0000 00061000
    OLEACC.dll: 74be0000 0002c000
    MSVCP60.dll: 75ff0000 00065000
    adobe_eula.dll: 03090000 00059000
    adobe_personalization.dll: 03120000 0005a000
    AdobeLM_libFNP.dll: 031b0000 00276000
    iphlpapi.dll: 76d30000 00018000
    snmpapi.dll: 71ee0000 00008000
    rsaenh.dll: 0ffd0000 00028000
    xpsp2res.dll: 20000000 00549000
    CLBCATQ.DLL: 76fa0000 0007f000
    COMRes.dll: 77020000 0009a000
    mswsock.dll: 719c0000 0003e000
    WINTRUST.dll: 76c00000 0002e000
    CRYPT32.dll: 765e0000 00092000
    MSASN1.dll: 76db0000 00012000
    IMAGEHLP.dll: 76c60000 00028000
    DNSAPI.dll: 76ef0000 00027000
    dnsq.dll: 30460000 0001b000
    wbemprox.dll: 74e50000 00008000
    wbemcomn.dll: 751f0000 00037000
    winrnr.dll: 76f80000 00008000
    rasadhlp.dll: 76f90000 00006000
    wbemsvc.dll: 74e30000 0000e000
    hnetcfg.dll: 60fd0000 00055000
    wshtcpip.dll: 71a00000 00008000
    fastprox.dll: 755f0000 00076000
    NTDSAPI.dll: 76770000 00013000
    Secur32.dll: 77fc0000 00011000
    icmp.Dll: 741f0000 00004000
    adobe_registration.dll: 03490000 00059000
    HPBF252E.DLL: 03f90000 0020e000
    COMPSTUI.dll: 6ea10000 0003a000
    MSIMG32.dll: 762f0000 00005000
    HPBF252G.DLL: 045a0000 0017d000
    ATMLIB.dll: 73b90000 0000b000
    clickprt.dll: 05990000 0005d000
    fmmediaannot.dll: 05a00000 0007b000
    frame2pdf.dll: 05a90000 0007d000
    mailer.dll: 05b20000 0006c000
    MAPI32.DLL: 62060000 0001f000
    bookerrlog.dll: 05ba0000 0006a000
    pdfsize.dll: 05c20000 00071000
    fmpdfreflow.dll: 05cb0000 0007d000
    WebDAV.dll: 05d40000 000f7000
    ARM.dll: 61800000 00109000
    AdobeWeb.dll: 60800000 0011f000
    ecm.dll: 05e70000 000e1000
    sgen.dll: 05f70000 000c8000
    dispatch.dll: 06050000 000dd000
    trnslate.dll: 06350000 00210000
    xerces-c_2_5_0.dll: 12000000 001c6000
    Xalan-C_1_8.dll: 06560000 001b8000
    XalanMessages_1_8.DLL: 06720000 00007000
    GoMarkup.dll: 06730000 0013b000
    GoCore.dll: 06870000 00081000
    SCL.dll: 06900000 00044000
    xmlcss.dll: 06ad0000 00217000
    docbook.dll: 06d00000 00214000
    xhtml.dll: 06f30000 00212000
    qstart.dll: 07160000 00064000
    cnvschma.dll: 071e0000 000b2000
    u3dfilter.dll: 072b0000 0006d000
    rt3d.dll: 07320000 00327000
    ditafm.dll: 07670000 000d2000
    ditafm_app.dll: 07b80000 0021c000
    ditabook.dll: 07db0000 000b3000
    dws.dll: 07e80000 000d9000
    mapper.dll: 07f70000 00087000
    masterpages.dll: 08010000 00065000
    tablesort.dll: 08090000 00066000
    RTXOLAss.dll: 08120000 00055000
    OLEPRO32.DLL: 5efe0000 00017000
    appHelp.dll: 76d70000 00022000
    tortoisesvn.dll: 082d0000 0006d000
    libapr.dll: 6eec0000 00022000
    libaprutil.dll: 6ee60000 00028000
    libapriconv.dll: 6ee50000 0000d000
    intl3_svn.dll: 08360000 0000c000
    cscui.dll: 76590000 0004e000
    CSCDLL.dll: 76570000 0001c000
    browseui.dll: 75ef0000 000fd000
    ntshrui.dll: 76960000 00024000
    ATL.DLL: 76af0000 00011000
    USERENV.dll: 759d0000 000ae000
    shdocvw.dll: 7e550000 00171000
    CRYPTUI.dll: 75430000 00071000
    scrchpg.dll: 307e0000 00027000
    PDFShell.CHS: 08740000 00009000
    SXS.DLL: 75e00000 000ae000
    MSOXEV.DLL: 36f10000 0000c000
    PSCRIPT5.DLL: 5e250000 00073000
    mscms.dll: 73aa0000 00015000
    Ps5ui.dll: 5e2e0000 00022000
    AD2KReGP.DLL: 70000000 00007000
    === Windows Relocation Information End ===
    === Windows Stack Traceback Begin ===
    [Stack Frame]
    0012a4dc: 00000000 00000064 0012a500 00580676
    0012a4ec: 00b9a260 ae8c46a2 0012a4fc 00806e82
    0012a4fc: 0012a514 007be22d 00000000 0000017d
    0012a50c: 0529b5a0 02b1a730 0012a538 007bed69
    [Stack Frame]
    0012a4f4: 0012a4fc 00806e82 0012a514 007be22d
    0012a504: 00000000 0000017d 0529b5a0 02b1a730
    0012a514: 0012a538 007bed69 0529b5a0 052b6738
    0012a524: 00000000 00000000 00010000 7c8840e0
    [Stack Frame]
    0012a518: 007bed69 0529b5a0 052b6738 00000000
    0012a528: 00000000 00010000 7c8840e0 00150000
    0012a538: 0012a544 007bc172 0529b5a0 0012a598
    0012a548: 0070eee4 0529b5a0 00000001 052b6738
    [Stack Frame]
    0012a524: 00000000 00000000 00010000 7c8840e0
    0012a534: 00150000 0012a544 007bc172 0529b5a0
    0012a544: 0012a598 0070eee4 0529b5a0 00000001
    0012a554: 052b6738 00000000 00000000 00000000
    [Stack Frame]
    0012a578: 00000000 00000000 00000000 00000000
    0012a588: 00000000 00000000 00000000 00000000
    0012a598: 0012a5a4 00762cbc 00000000 0012a5e4
    0012a5a8: 0049e527 052b6738 052b6738 00000007
    [Stack Frame]
    0012a584: 00000000 00000000 00000000 00000000
    0012a594: 00000000 0012a5a4 00762cbc 00000000
    0012a5a4: 0012a5e4 0049e527 052b6738 052b6738
    0012a5b4: 00000007 000005fd 052b6738 77d4047

  • How can I open and print PDF files?

    How can I open and print PDF files?

    With the free Reader if they are not print protected. With Acrobat otherwise.

  • Any ideas how I can insert a pdf into word, using the insert object option. However the pdf i want to insert has text and lines annotated, but once inserted the comments don't appear????  any help would be greatly appreciated.

    Any ideas how I can insert a pdf into word, using the insert object option. However the pdf i want to insert has text and lines annotated, but once inserted the comments don't appear????  any help would be greatly appreciated.

    You will need to find a forum for MS Word since that is the software that you are trying to manipulate in this.  If you think the processing/creation of the PDF plays a role then you should ask in the forum for the software that you are using to create the PDF.
    This forum is for issue regarding downloading and installing Adobe trial products, so in any circumstance, your issue does not fit in this forum.

  • How can I convert Pdf from RGB to CMYK, keeping font color 100% K while working in Illustrator?

    How can I convert Pdf from RGB to CMYK, keeping font color 100% K while working in Illustrator?
    When I try to open the document in Illustrator and I convert to CMYK the black font converts to rich black, but to set up for Offset printintg I need the text to be only in Black (100%K).
    The original source of the document is a Microsoft Word file, I have converted the Word file to Pdf in order to setup for OFfset Printing.
    Thanks

    I have tried that way, but the downside is that the fonts are set in gray not in a 100%K, also I have to deal with other fonts that are composites and meant to stay Full Color. I could select text by text and convert to gray but, its a 64 page document and I wouldn't want to make a expensive mistake.

Maybe you are looking for

  • How can i relate my tables in order to get unique results

    Data given below is collected from three table ACCT_NO = 1242001063101 SYM_RUN_DATE     = 8/29/2012 ACTUAL_BALANCE = -7316.94 LEDGER_BALANCE_BASE = CLIENT_NO     = 1240000040 PROFIT_CENTRE = 206 BRANCH_NO = 124 CURRENCY     = PKR ACCT_TYPE = 101 DEPO

  • How can I convert string to the record store with multiple records in it?

    Hi Everyone, How can I convert the string to the record store, with multiple records? I mean I have a string like as below: "SecA: [Y,Y,Y,N][good,good,bad,bad] SecB: [Y,Y,N][good,good,cant say] SecC: [Y,N][true,false]" now I want to create a record s

  • Texts to send to delivery team from sales order

    Hi Gurus, We have a requirement here to send delivery or packing instructions from sales order. we want to send those instructions in advance to delivery team as soon as we save the sales order. it should trigger as an e-mail message to a delivery te

  • Replenishment Control / Follow-on Document

    Hi How can I associate a kind of purchase requisition to be the follow-on document in Replenishment Control? It works fine whith the standard but I need to use the new one I've created. Thanks, Patrício

  • Crystal Reports setup problem (?)

    Hello, I have recently taken over the role of creating/updating our Crystal Reports and have of course installed the software on my PC just as is explained in the installation guide and have set up the ODBC datalink. I decided to leave it installed o