Print Dialog box and User Code on Reader 10

Hello,
I recently updated to Adobe Reader 10 and when I go to print there is apparently a new adobe print dialog box. Which is ok except that it doesn't seem to get my user code info. When I print using the printer... button it prints fine. But if I push ok from the new adobe print dialog it causes an authentication error in the log on the printer. Is there anyway to put in my user code to adobe reader so I don't have to do this extra step? Can I turn off the new Adobe print dialog box and have it just go directly to the OS print dialog box like it used to?
Thanks,
dave

Can you tell us if you are using Windows of Mac OS? The Mac OS version of Reader has a Printer button on the bottom of the Print dialog box that brings up the standard printer dialog box.

Similar Messages

  • Adobe X no print dialog box and program closes when printing

    Have one user who started encountering this problem today:
    Opens up PDF
    Clicks on the Print icon (or File - Print)
    The Print Dialog box never appears
    Adobe 10.1.1 program then immediately closes - nothing in the event log
    Able to get the PDF to print only if right clicking on the file and selecting Print (but don't get to select any Printing options)
    Have tried selecting a different printer with the same results
    Have uninstalled and reinstalled the program
    Any help is appreciated

    iammrbojangles wrote:
    I have a similar problem with the the same printer.  Excel works fine until you ask to print preview, this takes about a minute to appear, and about another minute if you ask it to print too.  Once you've printed and are back in Excel anything you try to do now has a delay.  I've tried then changing the printer i want to use to a networked one which makes Excel return to it's normal self.
    I've also tried sharing this printer to make sure it wasn't the PC but it is the same on any I've tried.

  • Show print dialog box and print content of page

    Hi,
    I'm building a java webdynpro for the sap portal.
    When the user clicks on a button, I want to print out the content of the application.
    Is there any option to do this in java?
    I already found a possible solution like PrinterJob.getPrinterJob(), but this gives me an exception: java.awt.HeadlessException
    Any help!

    Can you tell us if you are using Windows of Mac OS? The Mac OS version of Reader has a Printer button on the bottom of the Print dialog box that brings up the standard printer dialog box.

  • InDesign CS3 Print Engine Error and Corrupt Print Dialog Box

    We are a networked office working on various files off of a server. After setting print settings in the print dialog box and saving the file, when another user (or the same user) reopens the file, the Print dialog box settings are changed in a bizarre, corrupted way, and the file will not print. We get the following error:
    Printing Error: The Adobe Print Engine has failed to output your data due to an unknown problem.
    and printing fails to the HP LaserJet 4240 PS (64 MB RAM).
    We all use Windows XP, SP2, Dualcore 3 GHz Pentium Processors with 3.5 GB of RAM.
    Specifically, the Print dialog box shows these strange settings:
    Scaling gets set to 0%, copies are set to 0
    Spreads are turned on
    Print Visible Guides and Baseline Grids are turned on
    All printers marks are turned on, offset is set to 0
    Use document bleed settings is turned on, include slug area is selected
    Output Text as Black is turned on
    Omit for OPI has all 3 file formats selected (EPS, PDF, and Bitmap)
    Usually resetting the Print dialog box and saving the file allows us to print but then the next time we open the file, the Print settings are corrupted again.
    Any solutions? Or any fixes in the works?
    Thanks for your help!

    We currently only notice this problem with files associated with one project. The project is a book of many chapters, each with it's own file. The problem affects multiple files and multiple users (4 out of 5 people working on these files have experienced the problem). It may very well be a problem caused by a different user opening the files after another has closed them.
    We have a LAN with multiple Dell servers running Windows 2003 and many end-user PCs using Windows XP. All printers are on the network but printing occurs locally, meaning that data sent to a printer does not go through a server.
    We could test the problem by copying a chapter to one person's computer and making them the only person who works on it for a day or two. It's just hard to do so because different people have different duties to perform on all files.
    Thanks for your help!

  • New to Dialog Boxes and I'm stuck

    Seems there is no way to format a field in a Dialog Box. How can a field be checked to determine if the correct type of data was entered in it, when the user moves to the next field, before data is committed?
    I am stuck on how to limit the number of characters entered into the postal code and phone fields. I want to limit the number of numeric characters that can be entered in each phonenumber field ie  3 numbers, 3numbers and 4 numbers (999 999 9999)  And postal code field ie 3 characters and 3 characters (A9A 9A9)
    Also, once the user enters the required number of characters in the phone and postal code fields, the code should tab to the next field. And yes, I read about tab_first and next_tab, but don't understand how it works. The way I see it working is that once a phone or postal code field is filled with the required number of characters, control automatically tabs to the next field.
    I am using Adobe Acrobat Professional 8
    This code was written by trail and error using examples from various sources ie Acrobat JavaScript Scripting reference - version 7.0.5, Acrobat JavaScript Scripting Guide - version 7.0, and I have very little experience in creating a dialog box and its code - forgive the mess.
    //============================================================================
    var goon=true;
    var result;
    var address;
    var city;
    var province;
    var sign;
    var postalcodea;
    var postalcodeb;
    var homephone;
    var homephoneareacode;
    var homephoneprefix;
    var homephonenumber;
    var businessphone;
    var businessphoneareacode;
    var businessphoneprefix;
    var businessphonenumber;
    address = this.getField("Text1-2-Address").value;
    city = this.getField("Text1-2-City").value;
    var provincelist = new Array();
    provincelist[1] = " ";
    provincelist[2] = "Alberta";
    provincelist[3] = "British Columbia";
    provincelist[4] = "Manitoba";
    provincelist[5] = "New Brunswick";
    provincelist[6] = "Newfoundland & Labrador";
    provincelist[7] = "Northwest Territories";
    provincelist[8] = "Nova Scotia";
    provincelist[9] = "Nunavut";
    provincelist[10] = "Ontario";
    provincelist[11] = "Prince Edward Island";
    provincelist[12] = "Québec";
    provincelist[13] = "Saskatchewan";
    provincelist[14] = "Yukon";
    var sign = new Array();
    for (var i=0; i<15; i++)
                sign[i] = "-";
                if(provincelist[i] == this.getField("Client's Full Province Name").value)
                            sign[i] = "+";
    postalcodea = "";
    postalcodeb = "";
    if(this.getField("Text1-2-Postal-Code").value != "")
                postalcodea = this.getField("Text1-2-Postal-Code").value;
                postalcodea = util.printx("A9A", postalcodea);
                postalcodeb = this.getField("Text1-2-Postal-Code").value;
                postalcodeb = postalcodeb[4]  + postalcodeb[5] + postalcodeb[6];
    homephoneareacode = "";
    homephoneprefix = "";
    homephonenumber = "";
    if(this.getField("Text1-2-Home-Phone-Number").value != "")
                homephone = util.printx("9999999999", this.getField("Text1-2-Home-Phone-Number").value);
                homephoneareacode = homephone[0] + homephone[1] + homephone[2];
                homephoneprefix = homephone[3] + homephone[4] + homephone[5];
                homephonenumber = homephone[6] + homephone[7] + homephone[8] + homephone[9];
    businessphoneareacode = "";
    businessphoneprefix = "";
    businessphonenumber = "";
    if(this.getField("Text1-2-Business-Phone-Number").value != "")
                businessphone = util.printx("9999999999", this.getField("Text1-2-Business-Phone-Number").value);
                businessphoneareacode = businessphone[0] + businessphone[1] + businessphone[2];
                businessphoneprefix = businessphone[3] + businessphone[4] + businessphone[5];
                businessphonenumber = businessphone[6] + businessphone[7] + businessphone[8] + businessphone[9];
    var dialog2 =
                initialize: function(dialog)
                             dialog.load(
                                                     stat:     "Client Address and Phone Information is required in forms you are about to link to. To save time, enter Address and Phone Information before linking to these documents.",
                                                    str1: address,
                                                    str2: city,
                                                    stra: postalcodea,
                                                    strb: postalcodeb,
                                                    str5: homephoneareacode,
                                                    str6: homephoneprefix,
                                                    str7: homephonenumber,
                                                    str8: businessphoneareacode,
                                                    str9: businessphoneprefix,
                                                    sts1: businessphonenumber,
                                                    str3:
                                                                "  ": (sign[1] + "1"),
                                                                "Alberta": (sign[2] + "2"),
                                                                "British Columbia": (sign[3] + "3"),
                                                                "Manitoba": (sign[4] + "4"),
                                                                "New Brunswick": (sign[5] + "5"),
                                                                "Newfoundland & Labrador": (sign[6] + "6"),
                                                                "Northwest Territories": (sign[7] + "7"),
                                                                "Nova Scotia": (sign[8] + "8"),
                                                                "Nunavut": (sign[9] + "9"),
                                                                "Ontario": (sign[10] + "10"),
                                                                "Prince Edward Island": (sign[11] + "11"),
                                                                "Québec": (sign[12] + "12"),
                                                                "Saskatchewan": (sign[13] + "13"),
                                                                "Yukon": (sign[14] + "14"),
                cancel: function(dialog)
                            return;
                destroy: function(dialog)
                            return;
                commit:function (dialog)
                            results = dialog.store();
                            var elements = dialog.store() ["str3"]
                            province = "";
                            for(var i in elements)
                                        if(elements[i]  > 0)
                                                    province = i;
                            return;
                            description:
                            name: "Address and Phone Information",
                            //align_children: "align_left",
                            //type: "static_text",
                            //char_height: 9,
                            //width: 350,
                            //height: 75,
                            elements:
                                                    type: "cluster",
                                                    name: "",
                                                    align_children: "align_left",
                                                    elements:
                                                                            align_children: "align_top",
                                                                            alignment: "align_fill",
                                                                            type: "view",
                                                                            width: 254,
                                                                            elements:
                                                                                                     alignment: "align_fill",
                                                                                                     bold: true,
                                                                                                     font: "default",
                                                                                                     char_height: 9,
                                                                                                     italic: true,
                                                                                                     item_id: "stat",
                                                                                                     multiline: false,
                                                                                                     type: "static_text",
                                                                                                     width: 150,
                                                                                                     height: 50,
                                                                            type: "view",
                                                                            align_children: "align_distribute",
                                                                            elements:
                                                                                                     type: "static_text",
                                                                                                     name: "Address: "
                                                                                                     item_id: "str1",                         
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 60,
                                                                                                     height: 20,
                                                                            type: "view",
                                                                            align_children: "align_distribute",
                                                                            elements:
                                                                                                     type: "static_text",
                                                                                                     name: "       City: "
                                                                                                     item_id: "str2",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 16,
                                                                                                     height: 20,
                                                                                                     type: "static_text",
                                                                                                     name: "Province: "
                                                                                                     item_id: "str3",
                                                                                                     type: "popup",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 16,
                                                                                                     type: "static_text",
                                                                                                     name: "Postal Code: "
                                                                                                     item_id: "stra",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 3,
                                                                                                     height: 20,
                                                                                                     type: "static_text",
                                                                                                     name: "-"
                                                                                                     item_id: "strb",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 3,
                                                                                                     height: 20,
                                                                            type: "view",
                                                                            align_children: "align_distribute",
                                                                            elements:
                                                                                                     type: "static_text",
                                                                                                     name: "Home Phone Number: ("
                                                                                                     item_id: "str5",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 3,
                                                                                                     height: 20,
                                                                                                     next_tab: 3,
                                                                                                     type: "static_text",
                                                                                                     name: ")"
                                                                                                     item_id: "str6",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 3,
                                                                                                     height: 20,
                                                                                                     type: "static_text",
                                                                                                     name: "-"
                                                                                                     item_id: "str7",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 4,
                                                                                                     height: 20,
                                                                                                     type: "static_text",
                                                                                                     name: "Business Phone Number: ("
                                                                                                     item_id: "str8",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 3,
                                                                                                     height: 20,
                                                                                                     type: "static_text",
                                                                                                     name: ")"
                                                                                                     item_id: "str9",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 3,
                                                                                                     height: 20,
                                                                                                     type: "static_text",
                                                                                                     name: "-"
                                                                                                     item_id: "sts1",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 4,
                                                                                                     height: 20,
                                                    alignment: "align_center",
                                                    type: "ok_cancel",
                                                    ok_name: "Continue",
                                                    cancel_name: "Cancel"
    var dialog3 =
                initialize: function (dialog)
                cancel: function(dialog)
                            goon=false;
                            return;
                destroy: function(dialog)
                            return;
    while (goon)
                result = app.execDialog(dialog2);
                if (result=="cancel")
                            goon=false;                  
                if (result=="ok")
                            this.getField("Text1-2-Address").value = results["str1"];
                            this.getField("Text1-2-City").value = results["str2"];
                            this.getField("Client's Full Province Name").value = province;
                            this.getField("Text1-2-Postal-Code").value = results["stra"] + " " + results["strb"];
                            this.getField("Text1-2-Home-Phone-Number").value = results["str5"] + results["str6"] + results["str7"];
                            this.getField("Text1-2-Business-Phone-Number").value = results["str8"] + results["str9"] + results["sts1"];
                            goon=false;

    If you know a link that has what he wants, wouldn't it be prudent just to provide that?
    I got overwhelmed trying to understand all of the different related elements of the Flash family when I was starting, so I know what that's like. Roughly (and Ned might want to correct or clarify some of this), Actionscript 3 is the programming language Flash/Flex/AIR content is based upon. Flash is a blanket term encompassing the developing environment (Flash Pro), code libraries, and runtime (Flash Player). AIR is a runtime environment built upon Flash Player, but with added functionality and cross-platform support. Flex is an extension of Flash, offering MXML components in addition to the libraries available in Flash Pro. Adobe intends for you to use Flex with Flash Builder, a separate IDE built upon Eclipse.
    I haven't used MXML yet, but my impression is that (at least in Flash Builder) it is functionally similar to WYSIWYG editing in Microsoft's Visual Studio.
    If you are developing games, you can edit entirely in Flash Pro, entirely in Flash Builder, or combine both of them. Flash Pro lets you put code on the timeline, which can make some coding much easier, but also makes it very, very easy to write messy and disorganized code. Flash Builder doesn't provide access to the timeline and is intended for class-based development. Personally, I like to combine the two, writing some timeline code in Pro and doing my class files in Builder, but I'm not the greatest developer.
    As a heads-up, the code editor in Flash Pro is absolutely terrible, and is full of bugs that have existed for many generations, because Adobe wants you to buy Flash Builder for the additional $600, but if you are a student or "unemployed", you can get FB for free from Adobe.

  • Print dialog box just blinks

    I have a user with a PowerBook G4 (OS 10.4.8) all the latest updates. In any program she cna get to the print dialog box and then it just pulsates, never can click,
    Fixed permisions, reset pram, nvram, deleted printers reinstalled printers, rest printer utility. still nothing.
    Any suggestions??

    I haven't seen that, but it does sound a little like the "Xerox plugin" issue. Do a search for Xerox Plugin here.

  • Photoshop cc print dialog box image dark

    I'm on a MacBook Pro running Mt. Lion with PS CC, an Eizo monitor, printing with an Epson 3880, calibrated and profiled with a ColorMunki. When I preview an image to print, the image is darker in preview, and the color is much different than the actual image. When I print with the proper paper profile, (photoshop manages color and the space is Adobe 1998) it prints looking like the preview image rather tha the one on the monitor. I also run Snow Leopard on a partition with CS6, and the above does not happen, everything works fine. A photog friend of mine with a similar setup is experiencing the same problem since upgrading to Mt. Loin. Another graphic designer friend is running Mavericks and is has the same problem. I have another photog friend in Nashville who is having THE SAME PROBLEM!! Does anyone know what the heck is going on? I'm the only one who kept Snow Leopard so I can still print, which I do on almost a daily basis. What broke what? Is it a bug with PS CC, or did something in MT. Lion break? This is very frustrating for all of us and I find it totally unacceptable.
    If anyone has a clue and can help, we would be eternally greatfull.
    Thanks,
    Greg Nikas

    Thanks for the tip on inserting photos. I'm new here, won't post a link in the future.
    I'll try to simplify my issue;
    1. In CS6 in Snow Leopard, the original/source image looks just like the image in the print dialog box and prints beautifuly. See images below.
    Original image.
    Print dialog box image.
    2. In PS CC and CS6 in Mt. Lion, the original/source image is redder and more saturated than the image in the print dialog box, but the print looks like the the image in the print dialog box. The image in the print dialog box looks like the original/source image in CS6 in Snow Leopard! See images below.
    Original image.
    Print dialog box image.
    3. The issue seems to be with how the original/source image in PS CC and CS6 renders in Mt. Lion. As I said in my intial post, I have three friends who are having the same problem and none of us can figure it out, and I'm the only one who kept Snow Leopard.
    4. I'm on a MacBook Pro running Snow Leopard and Mt. Lion on a partitioned disk.
    5. I have an Eizo CG222W monitor, which is calibrated with an x-rite ColorMunki. Each OS has it's own calibration profile.
    6. I print on an Epson 3880 using the latest driver, and all papers have thier own profile and look the same when printed from either OS. 
    7. All settings in PS CC, CS6 and Bridge are identical in both OS's.
    I hope this is stated more clearly.
    Greg

  • Removing PDF options in print dialog box

    When I bring up the print dialog box and click on "PDF" to go to the options for saving the document as PDF, how do I remove some of the options from that list? I installed software that put an option in that list, but I don't use the software so I want to remove that PDF option from the list but don't know where to go to remove it.

    ~/Library/PDF Services or /Library/PDF Services

  • Excel is throwing error when it click print : 'No printers are installed. To install a printer click the File tab, and then click Print. Click No Printers Installed, and then click Add Printer. Follow the instructions in the Add Printer dialog box'

    Excel is throwing error when it click print : 'No printers are installed. To install a printer click the File tab, and then click Print. Click No Printers Installed, and then click Add Printer. Follow the instructions in the Add Printer dialog box'
    Word, and powerpoint application are working fine.  
    Environment :  Windows 7 64-bit, MS Office 2013 64-bit
    Steps to recreate
    (i)  Create new user account and add to any group ( do not log on using this
     account)
      (ii)  runas /user:<new user account>  <fullpath>\excel.exe
       it will ask password so enter on command prompt
    (iii)  open any excel document  and click File->Print
      (iv)  verify result  (it is failing) it pop ups below error
     Error:`Microsoft Excel
     No printers are installed. To install a printer click the File tab, and then click
     Print. Click No Printers Installed, and then click Add Printer. Follow the
     instructions in the Add Printer dialog box.                                                                                                               

    Sorry for late reply i was not at work
    I have a default set excel is still throwing error. Interestingly winword , powerpoint and publisher are working fine. I am able to print from all office applications except Excel.
     Probably excel behaves differently from other office applications.
     Probably it is a bug in excel
    Workaround : Log on to a system once using newly created account then runas excel using this account then print works fine.
    It means something in user profile should be configure to run excel print operation. Could you please somebody help what I need to configure in user profile that makes print operation success?

  • KB2909210 on Server 2008 R2 breaks my intranet sites and print dialog box

    Let's try this again.  I have been asking the following question of Microsoft and every time I do, I have only been told to try another forum.
    I have several intranet sites that my users use for various data entry and querying purposes.  I installed Internet Explorer 10 onto my 2008 R2 Terminal Server over this past weekend (10/18/2014) which also installed the Security Update KB2909210
    and rebooted the server.  On Monday morning (10/20/2014), when my terminal users logged into the sites, the sites began malfunctioning.  All the dropdown arrows turned into question marks.  Some fields which normally have a small "x"
    on the right-hand side used to erase the data entered in the text field were also displaying as question marks.  The objects still functioned but it was disconcerting to my users.  The update also slowed down these same intranet sites to where it
    began interfering with productivity.  I activated Compatibility View for all intranet sites, but it did not resolve the problem.
    I also found that when my terminal users tried to print a pdf document from the intranet sites, the print dialog box was jumbled and no fields were pre-populated with data like they always are when printing.  I updated to the latest Adobe Reader, but
    the print dialog box remained jumbled. 
    All of my users with stand-alone PCs have IE 10 installed and the intranet sites work fine.  The sites display properly and process quickly, and the print dialog box is not jumbled.  It is only my terminal users who log in from a thin client
    to their profiles on the server and use the IE version installed on the server who have the problem with IE10.  The KB2909210 Update is not installed on, and does not come up as, an update for any of my stand-alone Windows 7 PCs.
    I uninstalled IE 10 from my server, but since this was one of my production servers, I could not restart it until after the plant was shut down for the evening forcing my users to suffer with the slowness for the day.  This morning (10/21/2014) the
    intranet sites are working fine through IE 9.  I also had to revert back to Adobe Reader v9.5 as the v11 (and v10) print dialog box does not display properly in IE 9.
    I do not want to stay on IE 9 on my server as IE9 gets more un-secure by the day and we've found IE 11, on any of our machines, to be too buggy.
    How can I install IE 10 with its security updates and prevent it from breaking my intranet sites and print dialog box?  What is so different about Server 2008 R2 and Windows 7 that IE 10 causes this corruption of intranet sites and the print dialog
    box on the Server but not on the Win 7 machines?
    The bulletin here:
    https://technet.microsoft.com/library/security/ms14-011
    is useless for determining why it breaks my intranet sites. Nor does it explain why the update destroys the print dialog box.

    Hi,
    In my opinion, it's hard to say your problem caused by KB2909210. Have you tried to uninstall this update for test if your intrant site's problem resolved?
    If your problem truthfuly caused by this updates, you can choose to hid the update as a workaround method.
    Roger Lu
    TechNet Community Support

  • Adobe Reader - Print Dialoge box is usable

    Yesterday I was running Reader ver. 10.1.3 on a Windows 2008 x64 Terminal Server.  All users Adobe Reader print dialoge boxes now open up very very large.  Any visible font is perhpas 10" tall (see screenshots below).  Drop down pick lists don't display text, and neither does any of the buttons (see screenshots below).  As long as you just want a standard print, you can press enter to activate the defaulted print button.  You can press the ESC key to exit the print dialoge form.  Printing is all being done to Networked printers and I get the same screen no matter what printer is set to be the default printer.
    Sometimes (rarely) the print dialoge box will display normal size, and it will display the page your going to print, but as per above, there is no text on the buttons or drop down boxes.  The sample screenshot below took up my entire 1920x1080 screen and is just a small portion of the dialoge box size.  I have to scroll around three screen lengths to get to the other side of the dialoge box. There is no verticle scroll bars, so I can't scroll down to the bootom of the dialoge box.  Nor are there any window resize options (see last screenshot below)
    Here is a closeup shot of the top LH side of the Dialoge box:
    Below is a screenshot of the top RH corner (I had to scroll three window lengths to get to it):
    The Word and Excel etc. Print Dialoge boxes are all working ok.  I have tested different default printers with the Reader Print Dialoge box window and get the same looking screen.
    The first thing I tried was to just reboot the Terminal Server (TS).  I was supprised to find that I had the same problem.  I tried upgrading to 10.1.4  and rebooted the TS.  I still have the same problem.  I see that someone else has sort of had a similar issue to mine:  http://forums.adobe.com/message/4559861 But don't really see a response on how or if it was resolved.
    Anyone have an idea of whats going wrong and how to fix this?
    Thanks.

    As mentioned above, every now and then people will see a normal sized dialoge box.  Here are two examples:
    and:
    Regards.

  • Print Preview is missing from Firefox 6 on Mac OSX Lion in both File Menu and Print Dialog Box

    The question says it all really. Print Preview option is missing from both the File menu and from the Print dialog box when you select Print. I use Print Preview a lot to avoid wasting paper.
    A relevant issue might be that the Mac OSX app Preview is currently having trouble with various printers including my Xerox and so, temporarily, the default application for all Preview items is now Adobe Reader until Apple get their act together. Perhaps this is affecting things?
    Thanks for any help

    It's moved to the PDF dropdown, "Open PDF in Preview"

  • Adobe Reader XI - print dialog box blank - Windows 8

    Using the latest version of Adobe Reader XI, The print dialog box either comes up blank as shown in file 1 and I have no control over printing. OR it comes up with all the labels missing, see File 2 - yet I can control some features by clicking on the blank boxes.
    FILE 2 - Print Window for Adobe Reader XI in Windows 8.docx
    https://files.acrobat.com/preview/41f38277-3483-4179-8bea-97c593bdf52d
    FILE 1 - Print Window for Adobe Reader XI in Windows 8-Blank.docx
    https://files.acrobat.com/preview/435659b8-50ec-4b05-8a02-4de75305446f

    One reason that the Acrobat/Reader dialogs will not display correctly is when the needed system fonts have been removed or uninstalled.
    Or it may be that the default font is changed.
    Try to reinstalled the Segoe font family and check if it corrects the issue.
    Also You can follow the below steps for restoring the default font and removing any font changes you’ve made. After the restore, check if the issue is resolved or not?
    1. Open Fonts by clicking the Start button, clicking Control Panel, clicking Appearance and Personalization, and then clicking Fonts.
    2. In the left pane, click Font settings.
    3. Click Restore default font settings.
    You can also check the corrupted fonts by running Microsoft’s Font Validator from http://www.microsoft.com/typography/FontValidator.mspx

  • Image looks great in PS- when I go to print it looks grainy in printer preview dialog box and prints blurry. Why?

    Image looks great in PS- when I go to print, it looks grainy in printer preview dialog box and prints blurry.  Why is this happening? 

    PS CC, Yosemite, Epson 3880 (called espson to make sure it wasn't something with that), saved as a tiff/psdjpg- all files behave the same way.  When I open the raw file- and only crop the image- it behaves this way now- with grain and blur when printing.  No other files do this in the same shoot.  I worked on this image- could something have gotten corrupted along the way such that now even opening the raw file creates this problem.  SInce upgrading my computer -  a window pops up when I open PS that says I need to update my graphics card?? for 3D- I'm not using 3D- so I don't know if that means anything.  I have to leave for about an hour- but greatly appreciate any feedback. I will be in touch. Thank you.

  • Crystal 10 RCD and Windows (Advanced) Print Dialog Box

    Years ago I wrote a Crystal Viewer program and Crystal Support showed me how to change the Viewer Print Dialog box so it would use the Advanced Print Dialog (I believe it used the Windows Print Dialog). Does anyone know how to set the RDC Viewer to use a Print Dialog that allows changing the printer and not just the default Print Dialog box that only shows settings for the default windows printer? I no longer have the source code for the program I wrote before and can't remember what to set and I have now written a new Viewer that I want to include the ability to change printers.

    Ahhh, what you're looking for is descibed in note #[1212245|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] - How to use the Printer Setup dialog box.
    Ludek

Maybe you are looking for

  • I can't download purchased apps in iTunes 11?

    I downloaded iTunes 11 for my PC. I can download my purchased music and movies/tv shows, but I can't seem to download my purchased apps. Whenever I open the apps page in my library, nothing comes upavailable for download like in the music tab. I've p

  • FACTORY CALENDER

    Hi, In my system, one public holiday(15th May) is defined as with option," with fixed day from date ". actually in the current scenario with "fixed day from date, option , in the next sceen, the weekday is defined as monday and the next tab shows the

  • HT204053 How do I re-activate my account?

    I had my account deactivated. I wish now to have it re-activated? how is this accomplished?

  • How to assign concurrent program to concurrent manager

    Hi: How to assign concurrent program to concurrent manager? or the other way around. It was an interview question. for R12 or 11i Thanks

  • Problem Blog Manager in sitebuilder invisible but show when published

    I have a Yola website. When in my sitebuilder on a Blog page and want to edit my post in my Blog Manager I cannot see the actual post (text or images) most of the time. Sometimes they appear on start up, but if I come out and go back in it disappears