Replacing the default Print Manager

I'm currently working on a project and was wondering if its possible to create a Print Manager in Java to replace the Default Print Manager.
In other words, i want the applications to send the print jobs to "My Print Manager" instead of the default print manager.
Hope someone can help me on this. Any info relating to this is helpful.
Thanks
James

These may offer some help:
http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02762273&cc=us&dlc=en&lang=en&lc=en&product=519...
http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03275041&cc=us&dlc=en&lang=en&lc=en&product=519...
007OHMSS
I was a support engineer for HP.
If the advice resolved the situation, please mark it as a solution. Thank you.

Similar Messages

  • Changing the default file manager in XFCE

    How would I go about using Nautilus as the default file manager in XFCE instead of Thunar? I know it can be started up with 'nautilus --no-desktop', but how do I make this the default when opening folders from the desktop, menus, etc..?
    The main reason I want to do this is because Thunar doesn't seem to remember a folders last setting. For example, there are folders which I would like to permanently view as a list, sorted by date; but there are plenty of other folders where this is not suitable. Nautilus remembers settings for each folder, Thunar doesn't, and it gets annoying changing the view mode each time. Also network browsing is easier in Nautilus, and I also like the way it tells you how fast file transfers are going.
    Thanks very much,

    Well, it might be considered a dirty hack but it has worked for me in gnome before so it should also work in xfce.  Just edit the thunar.desktop file in /usr/share/applications and replace the Exec=thunar to Exec=nautilus --no-desktop and save the file.  Then any time thunar is launched, nautilus will be launched instead.
    Otherwise, you can edit the menu with the menu editor and change the File manager command and do the same in the panel icon properties.  Both methods will work.

  • Pros and Cons for replacing the default user template?

    Hi,
    since I've installed a new server, I don't want to make any mistake,
    If I replace the default user template (*.iproj) by my own, is it really a bad idea?
    Am I better modifying the existing one (.plist) even if it is more work?
    Thanks

    If I replace the default user template (*.iproj) by my own, is it really a bad idea?
    While you can modify the default User Template, it is not a recommended practice to do so. Since you are managing clients via MCX, anything that you set in WGM for user preferences will be added to the user's profile at login. If you have a need for some specific application preferences that need to be added for users, configure the application on a workstation as a local user and then import the .plist into WGM. Anything else -folders or files- that an application creates in the local user prefs folders, that may be needed, can usually be placed in the /Library/Preferences, /Library/Application Support, and /Library/Managed Preferences folders on the clients so that users have access to them.

  • How can I retrieve the IP address of the default printer from the windows registry

    I am using LabVIEW 7 on windows NT4 computers.
    I have a SubVI that I use to ping the network printer to make sure that the printer is on line prior to sending a print at the end of testing a unit.
    If LabVIEW does not get a reply to its ping data is saved locally and the user informed.
    I would like to modify the VI that pings the printer to ping the default printer of the computer on which the VI is running.
    I would be grateful if anyone can show me how to retrieve the default printers IP address.

    Hi Stuart,
    The registry entries for User's Default Printer are:
    Win 9x:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\Curr​entVersion\Windows]
    NT/XP:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows]
    "Device"="Printer Name"
    The device is the name used to represent the printer in the registry. The name can be found in the [HKEY_CURRENT_USER\Printers\Settings] key.
    Machine name is part of the "Printer Name," which you can use to ping directly (i.e., w/out having to look-up its IP address).
    Hope this helps.
    Regards,
    Khalid

  • Is there a way to change the default print tray on an HP LaserJet 500 color M551 Printer

    Hi
    Is there a way to setup the default print tray for a HP LaserJet 500 color M551 printer to be tray 2 printing both online and direct?
    If so what would be the best way to go about implementing it?
    Thanks
    This question was solved.
    View Solution.

    Usually, you can change the default paper trays through the control panel and through the Embedded Web server (EWS).
    Check the settings on your control panel. Here is a link to the User Guide, check out page 94 and see if that helps you out.
    m551 User Guide
    For the EWS, put the printer IP address into your browser, then go to the tab that would list tray settings. Not sure exactly which tab has it for this printer series, but on other printer series it is on the system tab under paper setup.
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution

  • CR XI R2 Sp6 - How do you change the default printer used by the Viewer?

    CR XI R2 Sp6
    .NET
    VS2005, C++
    The app selects printer for the job as m_Report->PrintOptions->PrinterName = ss_Device;
    This works nicely for printouts to the printer, but is ignored by the viewer. There, the machine default printer is always selected when I hit the print button.
    Found this which is sortof similar:
    http://forums.sdn.sap.com/thread.jspa?threadID=1275149
    Is there any way to fix this? If no, then is it fixed in more recent versions of CR?

    All of that above can be changed at runtime, but you'd somehow need to figure out what the default printer driver is on each machine and then assign it to the report.
    Yes,but that is exactly what I do. The app normally uses the Windows default printer just as any C++/MFC app will do. On the file menu there is an option to select printer which calls CWinApp::OnFilePrintSetup(); which sets the application default printer setup.
    In the app there is a function to retrieve the default printer:
    CString CLpApp::GetDefaultPrinter()
         PRINTDLG     pd ;
         CString          printer("Failed") ;
         pd.lStructSize = (DWORD)sizeof(PRINTDLG) ;
         BOOL bRet = GetPrinterDeviceDefaults(&pd) ;
         if (bRet)
              // protect memory handle with ::GlobalLock and ::GlobalUnlock
              DEVMODE *pDevMode = (DEVMODE*)::GlobalLock(m_hDevMode) ;
              printer = pDevMode->dmDeviceName ;
              ::GlobalUnlock(m_hDevMode) ;
         return printer ;
    When I print, I do:
    void CSkrivDlg::StartReport(CLpReportJob^ jobb)
         jobb->SelectPrinter("",theApp.GetDefaultPrinter(),"");
         if(m_tillSkrivare)
              jobb->OutputToPrinter(1);
         else
              jobb->OutputToWindow("Fönsternamn", 0, 0, 200, 200, 0, NULL, NULL);
    This works correctly for OutputToPrinter(1);, but not for OutputToWindow() which are simply wrappers for the CR functions:
    bool CReportJob::OutputToPrinter(int nCopies)
         bool rc = true;
         try
              m_Report->PrintToPrinter(nCopies,true,0,0);
         catch (Exception ^e)
              TRACE("
    %s",e->Message);
              m_LastError = e->Message;
              rc = false;
         return rc;
    // OutputToWindow()
    // a,b,c,d = Fönsterkoordinater eller noll för default
    // style = flaggor för fönsterposition
    // window = fönster efter vilket vi dyker upp
    // child = rapportfönstrets handle om vi vill ha den
    bool CReportJob::OutputToWindow(CString Namn, int a, int b, int c, int d, int style, CWnd* window, CWnd **child)
         bool rc = 0;
         CString title="Dummy1";
         title = m_Report->SummaryInfo->ReportTitle;
         CFloaterDlg *Floater = new CFloaterDlg(NULL);               // TODO: Get window
         Floater->Create(IDD_FLOATER_DLG, NULL);
         if(Floater != NULL)
              m_Report->ExportOptions->ExportFormatType = CrystalDecisions::Shared::ExportFormatType::PortableDocFormat;
              Floater->m_Viewer->ReportSource = m_Report;
              Floater->m_Viewer->Zoom(theApp.m_ScreenZoom);
              // Sätt fönsterrubrik från rapporten
              Floater->SetWindowText(title);
              // Puffa på så att den kan ändra storlek på Crystal-kontrollen
              Floater->Size();
              // Visa fönstret om det är stängt
              if(!Floater->IsWindowVisible())
                   Floater->ShowWindow(SW_SHOW);
              rc = true;
              if (child!=NULL) *child=Floater;
         else
              AfxMessageBox("Kunde inte skapa fönster för utskrift",MB_OK);
              rc = false;
         return rc;
    Floater is simply a dialog that holds the Viewer control.
    For some reason does the Viewer not obey the printer selection done in the report

  • How do I set the default print margins for ALL printers in mozilla.cfg

    How do I set the default print margins for ALL printers in mozilla.cfg, even ones that are not yet installed / connected to the computer?
    I'm trying to install firefox with MDT and apply certain print options, but the printers themselves are connected at a later stage so the print.printer_myprinterhere cannot be used.

    Best answer I could find: [https://mike.kaply.com/2012/03/16/customizing-firefox-autoconfig-files/#comment-132668]
    If you can figure out how to add the printer name, this can be used to lock the margins.

  • How to have "black and white only" be the default print option

    Just installed a new printer and would like to set it up so that the default print option is black and white only. How do I do this?

    Can't find this anywhere. I'm brand new to Macs so I
    might need more detailed instructions.
    I have an HP Photosmart C6100 by the way.
    Not sure which post you are responding to since you replied to yourself
    Every printer is a little different so you may have to do some searching through the settings. I don't have an HP Photosmart C6100 here so I can't say for sure where the setting is for that printer.
    The closest thing I have to that model printer here is an HP OfficeJet 6310
    In that model you choose Paper Type/Quality
    In drop down menu under Color you select Gray Scale
    Then you can still save the preset as I described in my previous post.
    If the C6100 is different than that you may just have to search through option pages and explore the drop down selections.
    Which I could be more specific, but they are all a little different.

  • How can I set the default print settings of my document as color.  I want the default print setting to be color when someone opens a document.  similar to duplex print preset is there a color print preset?

    How can I set the default print settings of my document as color.  I want the default print setting to be color when someone opens a document.  similar to duplex print preset is there a color print preset?

    Hi,
    Try saving your settings as a Preset by clicking the Preset drop down and then select Save Current Settings as a Preset.
    Next try changing the settings by selecting the saved preset.
    That allow saving the settings for a specific printer, I assume it may also allow selecting these settings for another printer.

  • How do you set the default file manager in kde?

    I'd like to set dolphin as the default file manager in KDE, how would I go about doing that?  I have an installed working copy of dolphin on my comp right now.

    pressh wrote:
    associate dolphin as default for directories in control center.
    kde components -> file associations -> inode -> directory
    Thanks, but for some reason when I go in there and change it as a user, it doesn't save the setting, and it doesn't work.  However, when I do the same thing as root it works, but of course, it only works for root then.
    pressh wrote:
    grizz wrote:but, it's several months waiting
    and dolphin is nice
    actually i think konqueror is more powerfull in kde3. However, the dolphin version in kde4 trunk is shaping up nice and looks promising.
    Dolphin is a little bit less cluttered, and seems to be faster too.  Most of the features in konquerer I never use.

  • Printing Documents through the Default Printer

    I have come across a problem, where it is getting difficult for me to enable my swings application to print a paper through the default printer which is installed. What should i do in this regard?

    Actually you just have to write
          // Create a job
          PrinterJob job = PrinterJob.getPrinterJob();  
          // Transmit the printable objet to the job
          job.setPrintable(yourPrintableObject);
          // Print the job
          try {
             job.print();
          catch(PrinterException e) {
             System.out.println("PRINTING ERROR: "+e.getMessage());  
          }Of course, you need a default printer set on the system...
    Hope this helped,
    Regards.

  • Set the default printer setting to landscape in Excel

    Hi,
    Is it possible to set the default printer setting to "1 page wide" and "landscape" whenever the user clicks print in Excel? I am trying to create an Excel report using XML and XSL. Though the report is created, I am not sure if I can control the printer page setting for MS Excel. Kindly let me know if its possible. If so, how can it be done? its kind of urgent.
    Thanks

    Your question was posted in the wrong forum.

  • Pages does not select the default printer.

    I have an IMac, 2.8 GHz, running version 10.6.5 connected to a Canon MX860. Under Print & Fax preferences, I list two printers. The first is Canon MX860 USB and the second is Canon MX860 Wireless. The default is set for the wireless. On all applications except "Pages", the default printer is the one selected. But, PAGES always selects the USB one. Is this a bug in PAGES, or is there something I can do?

    Yvan, not wishing to incur your ire... I have a similar problem and went through pages of discussions generated by the search function. I cannot find a thread matched with exactly with what I believe to be the issue here. My default print setting is wireless and all apps respect that including Pages (Version 09) generic templates. However, when I print from a Pages template that I created, it always defaults to the USB connection of my printer - and I do not leave the USB cable plugged in. I have tried to modify the template by opening it, File, Page Setup, Attributes, Format for wireless printer - save template.... Yet it still defaults to the unconnected USB version of my printer. Even doing page set up and then trying to print immediately, it defaults to the USB version. My printer is HP Photosmart C4585.
    Yvan if you know of the right thread, apologies but could you point me to it please?
    Many thanks for your patience

  • When changing the default printer in windows vista why doesn't the default printer change in firefox (firefox was running when the default printer was changed)?

    I am not sure whether or not this is a bug or a feature, but I was running firefox on my laptop. I then went to add a new printer and set it as a default printer. When I went back to firefox to print, it did not automatically choose that new default printer as the printer of choice. I then had to choose the new printer manually to print to. This is merely a convenience issue but thought I would bring it to the attention of Mozilla in case.

    Hello bradleesargent
    as i can see the note in the kb article ([https://support.mozilla.org/en-US/kb/how-print-websites#w_print-window-settings Print window settings]) ''The default printer is the Windows one. When a web page is printed with the selected printer, it becomes the new default printer.''
    do you have your previous printer also, or you uninstall the previous printer and then install the new one and make it default ?
    I think firefox must be closed when you set up a new printer. Do you have it open when set up the new printer ?
    thank you

  • Why doesn't printing use the default printer?

    I have two main printers to use at home and whenever I print a web page, Firefox automatically prints using the non-default printer. If I select the default printer from the drop down list, it works fine. I shouldn't have to select the default printer every time I want to print.

    Note that NONE of the replies answer the original question.
    The key word in the question is "'''Why'''" and "default printer" refers to the system's default printer.
    Why does Firefox behave differently than any other Win app when it comes to printing, ALWAYS use the system's default printer UNLESS the user changes it (''and NOT memorize the choice'').
    To put it another way, '''Firefox should NOT always use the last printer selected'''.
    '''This non-standard printing behavior should be changed.'''

Maybe you are looking for

  • How to define ABC class field in the Customer Master Sales tab

    HI All, can any one let me know how to define the new  ABC class in the Customer Master Sales tab like below. u2013 A (> 6,000,000 ) u2013 B (> 1,000,000u20136,000,000 ) u2013 C (> 100,000u20132,000,000 ) u2013 D (< 100,000 ) can any one let me know

  • Apple Application Support Installation Error "8.0.microsoft.vc80.CRT"

    When I tried to upgrade to the latest iTunes on my Vista system, I get the following: "error occurred during installation of assembly policy 8.0.microsoft.vc80.CRT." I have tried several suggestions on various threads here, including this one: http:/

  • How do i add more space on a partition hardrive

    i install parallels on my MacBook Pro, and i need to add space to the windows drive to install some programs. How can i do this?

  • Cannot rotate screen orientation

    I am attaching a second moniter and need to rotate the orientation that is displayed on that screen.  The hot keys (ctrl+alt+arrows) don't do anything, and there is nothing in the control panel where the drop down option is supposed to be.  This is t

  • Movie was already yet not included in my purchase history.

    I purchased a movie using my iPad. I received an e-mail of the receipt but my movie didn't finish  downloading and the file is not included in my purchase history. What should I do? It has been already charged in the credit card.