Use System Print Window

Hello. I was wondering if there was a way to use the default sytem Print window in Acrobat XI for Mac OS X. Currently on 10.8 with all the latest updates to both the OS and Acrobat.
Thanks!

It is not possible. Acrobat has needs and interactions with the underlying print system (including generation of its own PostScript when printing to PostScript devices) that seriously preclude printing in that manner.
          - Dov

Similar Messages

  • I can't use the Print Window command like I used to in os9.2

    I just want to print a list of Folders within a folder and when I open the folder and go to "File" the print selection is grayed out.
    Is there another way to do it, or is it just not there anymore?
    Any help would be much appreciated.
    Printefex

    Hi Again Printefex!
    Also, You have posted your inquiry, in the Discussions Forum, that is intended for discourse about the use of Apple Discussions.
    You will get more focused attention to your issue, if you select a more appropriate location from this page Discussions Forum Home.
    From that page, you could have selected the Category page Mac OS X v10.4 Tiger, as Michael Morgan1 suggested, and then chosen the Forum page Printing & Faxing, where there is an option to Post New Topic.
    Enjoy Your Stay In Discussions!
    ali b

  • C# console app - print job vanishes in Windows 8 regardless of print driver used; works in Windows 7

    I have the following which sends a print file to a specific printer. It works perfectly in Windows 7, but not in Windows 8. The print job shows in the print queue until the print job is closed. Then the print job literally vanishes from the print
    queue. This issue occurs with all print drivers, including generic text only. Conversely, I can still use the "winspool.drv" DLL directly under Windows 8 and it works. Please advise. Thank you.
    Here is my code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.IO;
    using System.Printing;
    namespace PrinterLib
        public static class PrintToSpooler
            public static string SendFileToPrinter(string szPrinterName, string szFileName, string docName)
                try
                    // Create the printer server and print queue objects
                    //PrintQueue defaultPrintQueue = LocalPrintServer.GetDefaultPrintQueue();
                    //PrintQueue mypq = new PrintServer().GetPrintQueue(szPrinterName);
                    //using (var printq = defaultPrintQueue)
                    using (var printq = new PrintServer().GetPrintQueue(szPrinterName))
                        using (PrintSystemJobInfo job = printq.AddJob(docName))
                            using (var memoryStream = new MemoryStream())
                                FileStream fs = new FileStream(szFileName, FileMode.Open, FileAccess.Read, FileShare.None);
                                fs.CopyTo(memoryStream);
                                fs.Close();
                                Byte[] myByteBuffer = memoryStream.ToArray();
                                // Write a Byte buffer to the JobStream and close the stream
                                job.JobStream.Write(myByteBuffer, 0, myByteBuffer.Length);
                                job.JobStream.Flush();
                        printq.Commit();
                    return null;
                catch (Exception ex)
                    return ex.Message;

    Hello folks,
    I have been facing the same problem until right now. All above suggested methods failed (as it did for Jeff0123) . But after long research on that issue I think I found the reason (but no proper solution yet).
    MS Windows 8 and 2012 use a new printer driver generation based on XPS. Which means drivers like "generic text-only" won't work properly depending on the method the data is sent to the printer. In my case the
    same way like Jeff0123 tried to access the printers.
    See link http://support.microsoft.com/kb/2779300
    One solution might be to use API calls. I have also found a site which shows an example project for thermal slip printing. The VB.NET source code there features a wrapper class for all API calls. The functions you find behave pretty similar to the ones of
    the posted C# code example of Jeff0123. I did a small test so far and for my needs that works fine.
    Although the page is in German you can find the mentioned class by searching for "Public
    Class RawPrinter". Beside the comments the class methods are written in English. You find the class here: http://www.vbarchiv.net/tipps/tipp_2375-kassenbon-drucker-mit-vbnet-oder-c-per-esc-pos-befehle-ansprechen.html
    Hope that might help for at least a few of you. So long!

  • System.printing font problem with numbers

    I hope I'm putting this question in the correct forum as the issue covers a lot of ground.
    I have a C#.net 4 web service on an IIS 7.5 box (call it box 1) that creates XPS documents and stores them in an SQL database.
    I have a second C# .net 4.5 (tried .net 4 too and it makes no difference)web service on a separate box (box 2) that pulls documents out the database and sends them to print server queues on separate boxes, say this is box 3, using System.Printing which
    is pretty bog standard code except for the XML tray designation code.
    This works and the documents are rendered correctly except...
    If the font installed on box 1 (IIS 7.5 on server 2008 R2) that is used to create the documents is also installed on box 3 (Times New Roman for example on the print server which is also server 2008 R2) then the documents text comes out
    in Times New Roman as you would expect, but any numbers within that text come out in some unknown bold san serif font (e.g abcde
    12345). If I put a text character directly in front of a number it renders correctly.(e.g abcde x12345) If the font isn't installed on box 3 then it comes out correctly, numbers and all. If I print the documents from XPS viewer
    then they print correctly. The font versions makes no difference. I've tried changing the printer settings (print directly, advanced feature off, client rendering etc) and this makes no difference. The documents are properly formatted right down to each
    paragraph now (trying to get rid of this problem) and still it persists.
    This issue only appears if both boxes have the same font and you are printing from code.
    I've got around the problem by using an equivalent Linux TTF that'll never appear on both servers, but I'd love to know where this problem is. Any takers on answering this?

    Hi Ghost...
    If you're talking about the Linux TTF, it works just fine, unfortunately it's not an exact match, so in order to get Times New Roman to work as advertised I might have to put some rather "dubious" code in, i.e. hunt down any text that "starts with"
    number or find space + 0-9 and then stick an "i" in front in white..that sort of "dubious" thing.
    The Time New Roman problem (and other fonts that are on both the IIS 7.5 box where the documents are created and the print servers where they are spooled) is quite baffling.
    These are examples of the issue.
    2 people went to market...the text comes out in Times, the number comes out in some bold san serif.
    I went to the market on 12/12/2012 to see some pigs...shows the same problem
    I went .2 the market on .12/12/2012......shows the same problem
    I went t2 the market on i12/12/2012...all renders as Times.
    In a nutshell, if the char preceeding the number is a-z the numbers are rendered correctly, otherwise they come out as bold san serif.
    If I use, say for example Garamond (which isn't on the print server) then the whole everything renders correctly in Garamond. Same thing with all other fonts I tried. if both are on both servers then you get the problem. We have a mix of printers from
    various manufacturers hanging off the print servers and the same thing happens on all of them so it's not a printer driver problem.
    Everything renders correctly from a print out from the XPS viewer.
    The exact architecture is that browser Ajax requests are fired at the doc builder service on an IIS box which builds the documents, puts them in an SQL database as byte arrays and returns success. Depending on the user's location and printer
    spec, a new Ajax request is then sent to another IIS box (which is either local or remote to a print server) to print out the documents on location specific printers. The reason for doing it this way was to avoid Kerberos issues that would occur in a double
    hop to a remote print server. Note: this is not my domain and I have no control over maintenance, but a Kerberos failure would result in badness, so it's been avoided. Therefore jobs that don't need an exact user, use a domain app pool account and jobs that
    do require a specific user go to a service on the print server. Either way the same issue arises.
    I though the problem was with my code, but the MS example XPS documents show the same issue.
    XPS creation is by GemBox.Document from docx templates and Gembox saw the same issue on their servers when I brought this problem up with them. They put a fix in that partially resolved the matter from their standpoint, but it didn't make any difference
    in my architecture.
    HTH

  • Since I upgraded to windows 8.1 I'm no longer able to use my printer

    Every since I upgraded my pc to windows 8.1, I haven't been able to use my officejet 4500 desktop printer. I tried to download the driver and software but it didn't help. I have the windows 8 system 64 bit. Can someone please advise me what I need to do.

    Hey atinaaw,
    I would first suggest uninstalling the software that is already on your computer for the printer. I have included the document 'Uninstalling the Printer Software'. Please choose the option for Windows 8, as it will be the same steps for Windows 8.1.
    After the uninstall is completed. Please download and run the Printer Install Wizard. This will make sure that you do get the most current and compatible software for your computer, and printer.
    Please let me know if you are able to install, and use your printer successfully, thank you.
    I worked on behalf of HP

  • Not working right-will not let me type a new emall, pull contacts, also will not let me use wireless printer-kept shutting down windows.

    firefox will not let me type in yahoo mail as new email. will not pull up contacts. also, when I use wireless printer-it shuts down windows.

    Couple of points...
    DJ_Jynxx wrote:
    The thing is, this MUST be an Audition CC issue for two reasons. One, everything worked fine in CS6, which I was using right before I upgraded to CC. I even did a clean install of it by removing CS6 completely.
    All versions of Audition can co-exist on the same machine quite happily - there is no interaction between them at all, and the system was designed to be like this. So there's nothing to stop you keeping CS5.5, CS6, CC and even Audition3 on the same machine.
    The other thing I'm wondering about is Windows 8. There have been a considerable number of complaints about this doing weird things, including with Audition. I have a system that in many ways is very similar to yours, except that I don't overclock the mobo, and use a professional sound device (or two) with it (RME). The major difference though is that I use Windows 7 pro 64-bit, and I haven't had any of these problems at all. Yes I use it for a living, as well, but I don't bother with multiple DAWs - don't have time for all that these days. But I do use iZotope's RX software in its standalone mode without any difficulty.
    I'm not claiming that  Audition CC is trouble-free - any number of Mac users will confirm that - but people running it on W7 certainly seem to have far fewer problems with it. It may also be worth trying an uninstall-reinstall of CC - you never know. But differences in preview quality certainly point towards audio drivers, I'm afraid...

  • Adobe with Windows System Printer for Autocad Dwgs

    Please help me with a workable(successful)sys setup that plots Autocad 2014 dwgs to pdf using the Windows System Printer.

    check this if it is what you need.
    "Windows Embedded CE makes no attempt to retrieve data about the target printer or the type of output that it requires. When a network print job is queued, the redirector creates a thread to track the status of the print job."
    https://msdn.microsoft.com/en-us/library/ee494911(v=winembedded.60).aspx
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to use Different Main Windows in Multiple pages to print internal table

    Hi experts,
    I have a problem regarding how to have multiple different main windows in  smartforms..the problem is that i want to print an internal table in the third page of the smartform and that table can have dynamic values ..sometime it may have more than 400 values also which can not be printed in one or two pages ...
    so to accomplish the same what i did was..
    i tried creating a new main window in the third page but it is throwing an error saying two main windows not allowed and i also tried by copying the first page's main window but it is just repeating the same content what was there in second page..
      i also tried by creating a secondary window in the third page and in that  window i tried giving my internal table and tried by giving the next page to itself but  that also is not allowed and it throws an error saying a page without a main window cannot point to itself as a next page....
    i also tried using a secondary window and in that window i was trying to display the internal table but it is only showing third page content and fourth page itself  was not created....although in my next page field value of the third page , i have given  the third page itself as a next page ....but this also is not working ,.....
    please suggest how to have different main windows(not copy of first main window) in smartforms in order to display the dynamic contents of an internal table

    HI ,
    Just check with your smart styles with assigned  paragraph  allignment   .
    Try to create character style  with your required  font ,size and  Allignment  .
    Hope u this will solve your issue  .
    Let me know if any concerns......
    Regards,
    Lokesh

  • How do I stop Firefox from using a secondary window before it takes me to my printer window?

    When I print an email a window opens and gives me the option to print with the word print in the upper left corner of the window. When I click on print, the window for my printer is opened and I select print at the bottom. If I use Explorer the printer window opens and there is less extraneous information printed at the top of my document.

    You are using an old version of Firefox that is over 2 years old, and isn't supported any longer. Get Firefox 8. <br />http://www.mozilla.com/en-US/firefox/
    Firefox doesn't do email. If you are accessing email thru Firefox you are using a web mail service. Some web mail software doesn't provide exactly the same features for other browsers as they do for Internet Explorer. Without knowing which web mail service you are using - Hotmail, Gmail, Xfinity Connect, etc - it's hard to guess what your problem is. Plus, a screenshot of what that issue looks like in IE and in Firefox would be helpful for us to understand the issue. <br />
    https://support.mozilla.com/en-US/kb/Adding+screenshots

  • My setup: iMac hardline to Canon i960 printer. Issue: endless printing of the same document. The printer window states that the pinter is in use and there is nothing listed in the Print Queue.  How can I stop printing the document?

    My setup: iMac hardline to Canon i960 printer. Issue: endless printing of the same document. The printer window states that the pinter is in use and there is nothing listed in the Print Queue.  How can I stop printing the document?

    Soution: Delete the printer and add the same printer back in, therefore creating a new print queue.

  • Printing problem with Konica Minolta BizHub282 using RDP on Windows Server 2008 R2

    Hello,
    I have an office setup as follows:  Local office IP adress scheme 192.168.201.x.  There is a Konica Minolta BizHub 282 printer connected to the 192.168.201.x network as well as around 10 workstations running Windows 7.  There are also about
    10 additional teleworkers WHO DO NOT NEED print access to the Minolta 282.  All of their data is on a cloud server.  I have them setup to first connect to the cloud server using a RRAS PPTP VPN and then to start an RDP session to the separate
    RDP server.  The Konica Minolta works ??okay?? with the easy print services and until now, we have just dealt with the lack of features and the occasional print job that goes crazy and prints out 400 blank pages (btw, this is usually on Excel) or a job
    that cuts off the margins even when you have it set to "fit to page" (this usually happens in Adobe.)  When I originally set this up, I tried loading the native Konica drivers on the server, but there was no joy because I couldn't get it to
    work using the native drivers.  The problem at hand is a feature called "account track."  This feature authenticates your print job by using an account code.  If there is no code, the job just disappears.  When I load the native
    Konica driver, the ability to turn on this feature is greyed out (see below):
    When I use easy print, the codes seem to go through, but as I mentioned earlier, sometimes the print job just goes insane.  After researching this, it seems to me that there are two ways to overcome this if we can't turn off the account track feature:
    1) Overcome the driver problem. I've tried both of their current drivers without success: VXL and Visual Postscript. When I login to RDP, the (redirected) Konica 282 printer is listed, but when I try to print, it fails due to the missing account track code.
    I'm hoping that there is a registry hack to turn this feature on by default with the code or a driver version that works with RDP. They have a WHQL driver available, but it didn't work any better. Is there a way to report this issue to the WHQL labs? Maybe
    I can light a fire under Konica's rear end and motivate them to fix the driver.
    2) I saw one discussion where the guy installed the printer out in the clouds as a local printer. He seemed to have a site-to-site VPN, not a client-to-site VPN, so this worked.  Is there a way to do something similar when the customer connects to the
    VPN through standard "connect to workplace" setup?  I tried pinging the Konica 282 from the server while logged into the VPN, but the printer could not be found.  
    3) I considered setting it up as a google cloud print prnter, but that would require everyone to setup a google account and add a layer of complexity. 
    Anyone else run into this and have a solution?  If not, does anyone have any ideas on a solution or workaround?
    Thanks,
    Jeffery Smith

    Hi Jeffery,
    Thank you for your comment.
    Yeah, you can use universal print driver by configuring Remote Desktop Easy print on RDS Server. Install the driver on RDS server. Now to configure Easy print you need to have minimum client RDP 6.1(But suggest you to install RDP 8.1), .Net Framework 3.5 or
    above and RDSH role.
    Also under GPO setting need to check below settings.
    Do not allow client print redirection: Disable 
    Use Terminal Service Easy print printer driver first: Enable 
    Computer Configuration > Administrative templates > Windows Components > Remote Desktop Services > Remote Desktop Session Host > Printer redirection
    For more information, you can refer below articles.
    How to configure Microsoft RDS Universal Printing
    http://www.virtualizationadmin.com/articles-tutorials/vdi-articles/microsoft-hyper-v/how-configure-microsoft-rds-universal-printing.html
    Using Remote Desktop Easy Print in Windows 7 and Windows Server 2008 R2
    http://blogs.msdn.com/b/rds/archive/2009/09/28/using-remote-desktop-easy-print-in-windows-7-and-windows-server-2008-r2.aspx?Redirected=true
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Using High-end Windows 8.1 system with Quadro Card and CC2014 fails on many levels. Help!!

    I produce TV spots daily and and I can not afford so many failures. CC2014 is the worst experience for us and we have several systems that prove it's not our hardware.
    -Crashes repeatedly (and most times can not be replicated)
    -Freezes when queuing to media encoder
    -Rendered media has variable results and sometimes has no audio (or the audio is partially there). Have to reboot to correct.
    -Sporadic timeline behavior with audio playback being intermittent
    -Useless clip syncing function using audio tracks
    -Clip movement is frozen and cannot be moved until it's de-selected or the system has to be restarted 
    -Project bin behavior sends clips and text to the wrong folder.
    -All the above happens when Cuda card is turn on or off.
    -Some operations can not returned to normal unless we cold boot
    -Just found out that the audio filter DeNoiser does not render out entirely, you can hear mid way the clip when it kicks in  
    I originally paid for my monthly subscription because CC first came out as an improvement to earlier version, and was very stable. Now I'm wonder why I'm wasting my money. Don't get me wrong, I like where adobe is heading but they need to address the problem or offer a discount. I'd rather they fix EVERYTHING!
    My system (one of them)
    Operating System        Microsoft Windows 8.1 Pro with Media Center
    Central Processor        Dual Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz (16 cores)
    Graphics                     Video Adapter        NVIDIA Quadro 6000
                                      Screen Resolution        2560 x 1080
    RAM                          63.95 GB
    Free Memory              54.68 GB
    Total Hard disk           7898.89 GB
    Motherboard               Z9PE-D8 WS
    Manufacturer              ASUSTeK COMPUTER INC.
    Any ideas? Is there any updates coming?
    My work... http://cmediapost.com

    Hi,
    Try to boot from win PE, please verify disk status, make sure partitions, files applied successfully.
    Please also check boot files.
    In addition, is the machine under UEFI mode?
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • After several years of use very satisfied with Firefox, recently loaded version (4.0.1) severely slows my browsing, and even my system, especially when there are pictures or videos. I said that this was not the case before and my system is Windows XP SP3.

    After several years of use very satisfied with Firefox, recently loaded version (4.0.1) severely slows my browsing, and even my system, especially when there are pictures or videos. I said that this was not the case before and my system is Windows XP SP3.

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • Windows - Use system proxy settings not working as expected

    Hi everyone,
    I have a bit of an issue that I could use some help with. We currently have remote users that utilize an SSTP VPN connection to access our internal network. Once connected, those users are required to use an internal proxy server to connect to the Internet. The proxy server is Microsoft's TMG and utilized domain authentication.
    On our remote Windows clients we have their Internet Options configured to utilize a proxy as follows:
    Internet Options -> Connections -> LAN Settings -> No proxy configured at all
    Internet Options -> Connections -> Highlight SSTP Connection -> Settings
    Use a proxy server for this connection -> IP/Port of Proxy Server
    Firefox and Chrome are both configured to use system proxy settings.
    Here is my process to demonstrate the issues:
    Remote client workstation is rebooted.
    With the above configuration just after a reboot, a remote user that is not connected to the VPN can browse the Internet with Internet Explorer, Chrome, and Firefox. None of the browsers prompt for credentials.
    A remote VPN connection is then established.
    FF is opened and HTTP connections utilize the proxy server. However, HTTPS connections do not use the proxy server, but instead attempt to use the default gateway. FF does not prompt for credentials. FF is closed.
    Chrome is opened and can access both HTTP and HTTPS sites without issue. No credential prompt. Chrome is closed.
    IE is opened and can access both HTTP and HTTPS sites without issue. No credential prompt. IE is closed.
    Here's where it gets weirder...
    FF is then reopened. The VPN connection is still up. FF will prompt for credentials. Domain credentials are supplied and FF can now utilize the proxy for both HTTP and HTTPS connections. FF is closed.
    VPN is disconnected.
    FF is opened and cannot access the Internet as it is still trying to use the proxy server. FF is closed.
    IE is opened and can access the Internet. IE is closed.
    Chrome is opened and can access the Internet. Chrome is closed.
    FF is reopened and can now access the Internet. FF is closed.
    In summary, in the above scenario FF acts in an unexpected manner with regards to proxy usage when "use system proxy settings" is applied. However, Firefox begins acting as expected after IE is opened and closed. For example, connect to VPN, open IE, close IE, open FF, and everything works accordingly. Disconnect the VPN, open IE, close IE, open FF and everything works as expected.
    Any insight you can provide would be appreciated as it is affecting our FF users and the sooner we can achieve resolution the better. As a note, we've also worked through this issue with WPAD and proxy auto-detect. I've intentionally removed these from the equation to simplify troubleshooting.
    Thanks

    Quick update. Added to a previously filed bug. Looks like it's assigned now so maybe we'll see a fix for this soon.
    https://bugzilla.mozilla.org/show_bug.cgi?id=563169

  • My operating system is Windows XP SP3.  I have Adobe 11.0.08 installed.  I cannot print a pdf file/document. Error message - AeroRd32.exe - Unable To Locate Component  -  "Application failed to start because lxdautil.dll not found."  Any suggestions?

    My operating system is Windows XP SP3.  I have Adobe 11.0.08 installed.  I cannot print a pdf file/document. Error message - AeroRd32.exe - Unable To Locate Component  -  "Application failed to start because lxdautil.dll not found."  Any suggestions?

    That DLL is part of your printer driver; reinstall or update the device driver for your printer, and the message should go away.

Maybe you are looking for

  • IPhoto wont open with any update of it

    I upgrade to iLife '11 but I can't use iPhoto, I can use perfectly all the other apps in the bundle but iPhoto. I got this message... Process:         iPhoto [6811] Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto  Identifier:      com

  • Java mapping how to use com.sap.tc.logging

    Hi I would like to know how to use logging within a java mapping. I know i have to use theese classes : Location, Category, ConsoleLog but i dont know how. 1) How to load the P1, P2, P3 and P4 tags in the Error tag of the SOAP header watched in SXMB_

  • Miro's power button stopped working

    Suddenly my phone's power button stopped working. I can't lock/unlock the phone nor turn it off :/ Tried to take a screen shot, to restart the device but nothing happened. I dropped the phone only once or twice before months, it hasn't been in touch

  • Custom button control at SC Level

    Hello friends, I have enhanced a WD component on SC(/SAPSRM/WDC_DODC_SC_I_BD) to add some custom fields on the click of a button. I have added the custom fields in SPRO >,...> extension and field control-->.. configure custom fields at item level.  a

  • Hi i am getting error in xml form builder

    hi i created edit,renderlistitem,show  i haveadded buttons from extras-buttons i am getting error as Error:Edit form doenot contain save button or link what could be the reason how to solve it pls reply