How to change printer settings from serverside?

Hello
I have an ActiveX component which when loaded from client side browser changes its printer settings that is orientation from portrait to landscape. But when user clicks on this "print this page" link, download ActiveX component message is displayed. If anybody can help, how to do from serverside (IBM WebSphere) so that these messages are not displayed & printer dialog box settings change to A4, Landscape.
Looking forward for an early reply.
Thanks

Though server is not connected to client side printer but when serverside script which is embeded in "Jsp" & when client(user) clicks on "print this page" link, script changes user browser settings to "portrait, a4" so there is no need to download ActiveX control which is sometimes diasbled in client browser or message is display to download that component.
I heard there is serverside script which removes all these disadvantages?
Looking forward for an early reply.

Similar Messages

  • How to transfer printer settings from one Mac to another (both OSX)?

    Hello, I have not found a detailed description on how to transfer printer settings from one Mac to another.
    My issue is that I have a Mac G5 with 3 different settings saved as "presets" for the same printer. This works great, since the posters I print (on the large format printer) need different margins and different paper at times.
    This G5 is basically retired and only used for printing. G5 has OSX 10.3.9
    I have a MacPro as its replacement (OSX 10.4.11).
    The MacPro has all my apps and other settings setup to my liking.
    I found several links via Google saying copy this folder or directory, but I am not sure I did it correctly. I don't see the "presets".
    I tried launching the Migration Assistant (I hope that's the correct name), but was concerned the settings on the new MacPro would be overwritten with ALL the old stuff on the older G5. I did not start the transfer process because of this.
    If someone would list the steps needed to accomplish the transfer of printer settings or advise if this is possible, then I would be very grateful! The previous user of the G5 I am using was a "Genius" and I don't know how he created these "preset" choices.
    Thanks!

    Hi SCChelpdesk, and a warm welcome to the forums!
    I found several links via Google saying copy this folder or directory, but I am not sure I did it correctly. I don't see the "presets".
    This is the File that holds that info on Tiger, not certain on Panther...
    /Users/YourUserName/Library/Preferences/com.apple.print.custompresets.plist
    After moving, you very well might have to change the Owner's Permissions within Get Info window, then log out/in.
    I tried launching the Migration Assistant (I hope that's the correct name), but was concerned the settings on the new MacPro would be overwritten with ALL the old stuff on the older G5. I did not start the transfer process because of this.
    MA would transfer the info, but/and, if the user that had that info had the same Shortname as on the new one, it'll demand you give it a new Shortname to use... but then those settings would be transferred to that new user on the new machine. I think the 1st one will work though.
    The previous user of the G5 I am using was a "Genius" and I don't know how he created these "preset" choices.
    We can go through that way if you like... not all that hard.

  • How can i change printer settings from command line

    hello 
    i want to use command that changes printer to print grayscale or color 
    the best i find is to use: rundll32 printui.dll,PrintUIEntry
    but i cant find color settings there 
    i would like your help with that 
    thanks alot !

    We may have to wait for an update.  Aside from changing the country, I'm not sucre this can be done.  There is no Health App in the System preferences and no  way to modify from within the app.  Weird.
    If you go to Language & Region under general settings and choose any other country, you will get Metric.  I have the opposite problem.  I live in a Metric country and want my health app to be in lbs and inches which is what I am used to.

  • How to retrieve print settings from .rpt file?

    I have crystal reports 10 report file, in which I edited the printer settings... collate and number of copies(2) and saved it.
    now i want to print it from VB6. I am using a customized print dialog form (not using the common dialog control)
    I want to get the collate and number of copies settings from the rpt file. how can I get those details. any API available?

    Hi Samkar,
    It will look something like this:
    crReport.SelectPrinter "pscript5.dll", "HP LaserJet 8150 Series PS", "LPT1"
    crReport.PaperOrientation = crPO
    crReport.PaperSize = crPSS
    crReport.PaperSource = crPSR
    crReport.PrinterDuplex = crPRDPDefault
    crReport.PaperSource = crPRBinEnvelope
    Depending on the version you have depends on if the function is available. It may be that 10 did not h ave the Papersource member.
    Thanks again
    Don

  • How to change printing settings

    I am trying to print from photoshop elements 10 and the paper I am using is an odd size 8x5.
    when I go tp print, it asks me to pick the size paper i'm using, and there is no size that i need there.
    What do I do to add my paper size?

    I found out how to do it and completed the change successfully.
    I did it by following the instructions in this link:
    https://discussions.apple.com/thread/1962435
    Matt Broughton
    This helped meRe: How to change default print setting to duplex 
    Apr 1, 2009 6:03 PM (in response to Clinto)
    Use a web browser to access the web interface for the printing system. Go to _http://127.0.0.1:631/printers_ and find your printer. Click on the button *Set Printer Options*. You should select duplex printing and the orientation that you want to make default. Be sure to click the *Set Printer Options* button when you are done. You will have to supply your administrator's short user name and password. Matt

  • Installed new wireless router; don't know how to change printer settings

    I just changed the wireless router which has created a problem with printing. I don't know what I need to do to change the printer settings to accommodate the new wireless router. Would greatly appreciate any help with how to do so. I'm on Windows XP, SP3 with a HP all in one on a wireless laptop (don't have wired connection). Wireless router is a linksys. Security AVG 8 trial version. Thank you!
    This question was solved.
    View Solution.

    What is the model of your printer? Did you install the printer via a USB previously?
    Please click on KUDOS if you find my solution helpful.

  • Pixma mg3222 how to change printer settings

    I have the pixma MG 3222 printer need help changing the printer settings to print a template by Avery #5931 (cd label)

    Hi,
    using SPAD transaction you can change printer setting. although you can change device setting, character setting etc,
    Regards,
    Kunjan

  • How to change printer settings in MSWord using Form6.

    I'm using OLE2 to print documents from word.
    First of all i want to know how to set what tray the printer should use from Form 6.0.
    Second, i want to know how to set the Header and footer in Word from Form 6.0.
    Here is the source code i'm using:
    MyApp := ole2.create_obj('Word.Application');
    Documents:=ole2.get_obj_property(MyApp,'Documents');
    Document:=ole2.invoke_obj(Documents,'Add');
    Pagesetup:=ole2.get_obj_property(Document,'PageSetup');
    ole2.set_property(Pagesetup,'TopMargin',i_TopMargin);
    v_args:= ole2.create_arglist;
    ole2.add_arg(v_args, '2');
    ole2.set_property(Pagesetup,'FirstPageTray',v_args);
    ole2.destroy_arglist(v_args);
    Setting the FirstPageTray isn't working.
    Can someone help me??
    Regards,
    DRJ

    Hi ,
    As you have mentioned that it is working fine with 2-3 printers try to find the differences of printer
    Try with this code:
    boReportDocument.Load(Server.MapPath("CrystalReport.rpt"));
            PrintOptions boPrintOptions = boReportDocument.PrintOptions;
            // The paper size used for this report is  '14x7'.
          System.Drawing.Printing.PrinterSettings oPrinterSettings = new       System.Drawing.Printing.PrinterSettings();
            oPrinterSettings.PrinterName = "     ";
            foreach (System.Drawing.Printing.PaperSize oPaperSize in oPrinterSettings.PaperSizes)
                if ("14x7" == oPaperSize.PaperName)
                    boPrintOptions.PaperSize = (CrystalDecisions.Shared.PaperSize) oPaperSize.RawKind;
                    break;
            CrystalReportViewer1.ReportSource = boReportDocument;
    Regards,
    Shweta

  • Change printing format from landscape to protraite

    user is trying to print billing Document
    How to change printing format from landscape to protraite from SAP level
    Thanks in advacne.

    Hi,
    Check the attributes of the smartforms or sapscripts.
    You can give the option for landscape or potrait format.
    For sapscript, the option is available in the basic settings tab.
    For smartforms, the option is available in the output options in the page window.
    Regards,
    Ankur Parab
    Edited by: Ankur Parab on Dec 22, 2009 5:43 PM

  • How to change printer and or system settings to print in color

    How to change printer and or system settings to print in color

    You can change the brightness with an RGBImageFilter which converts the rgb values to HSV, increases the value, and converts back to rgb.

  • I just upgraded my iPad to ios6. Now my Epson iPrint crashes all the time. I called Epson and they had no answer...said to use AirPrint instead. But AirPrint stinks because you cannot change printer settings. Anybody know how to make iPrint work on ios6?

    Anybody know how to make Epson iPrint work on ios6? Epson told me to use AirPrint, which stinks because you cannot change printer settings.

    Epson needs an update to their app to support ios6. I'm sure they will in time.
    Try deleting it and re download it. If that doesn't work, it's what I said above. :(

  • How can I change print settings permanently?

    I've looked through all the FAQs I can find, and I can see how to change the settings each time I print, but I'd like to make it so that it always prints the pictures several shades lighter. I also need to recalibrate the printer, but this has always been a problem. Is there a way to permanently set up a printing profile that will always automatically apply?
    I'm using Lightroom 3.

    printer driver settings are saved in the profile. Or upgrade to LR4 which has this feature built into the Print module.

  • How to Change Security Settings on an Existing Wireless Network

    I'd like to change existing network security settings to WPA2, AES or at least to from TKIP to AES.
    I'm familiar with browser access to the router and with how to change the settings on the router.
    My question is how to do this as painlessly as possible for the network.  Step by step would be nice
    I guess first I have to change the router settings using the computer running Easy Link Advisor?
    Do I then have to disconnect/reconnect that computer?
    Do I have to disconnect every other computer and then connect each one again with the updated settings?
    Will the change in security settings affect my print server?  If so, do I have to set it up from scratch in ELA?
    For the record, I have a WRT-300N and the print server is a 54g.
    Anyone who reads this may also want to look into recent news.  May not be a big deal, but a vulnerability of WPA/TKIP has been identified.
    Thanks in advance to anyone who answers.
    Solved!
    Go to Solution.

    Do I really need to set security for my wireless connection. I searched for available WiFi in my area prior to installing my  network and none were available. Does that matter?
    The network never did function right from the start. My desktop is a Dell Inspiron 510n and is not wireless capable? So when I tried to add my HP mni 1000 it did not let me access the Internet.
    So now I have an unsecured network. Am I vulnerable to attack?
    Which leads me to my real question How do I change the security settings?
    Oh yeah, my home computer crashed due to a program I downloaded, so I do not have access to it. i'm a mess....
    Thanks,for any help
    Phil

  • I have a business and I use iCal for all my appointments, how can I print receipts from my MacBook to a receipt printer? I want my clients to have a receipt of the services that they have paid for, can anyone HELP ME PLEASE?

    I have a business and I use iCal for all my appointments, how can I print receipts from my MacBook to a receipt printer?
    I want my clients to have a receipt of the services that they have paid for, can anyone HELP ME PLEASE?

    Well...I went to the modem (Westell, WireSpeed), found the NAT settings, once again, I'm WAY over my head, I am assuming this is a TCP connection (as opposed to a UDP) and per Lorex my mobile devices will use port 1025.  So I gave it a "global port range" of 1-10 and I indicated that the "base host port" was 80, 1025, & 9000 (ports 1,2,3).  When I selected the 'enable' it asked for a "host devise" my choices are my IPhone, IMac and the IP address for the dvr, so I choose the dvr.  I still cannot connect and canyouseeme still can NOT find these open ports.  This is taking up my whole day! I don't know how people figure this stuff out.

  • Photoshop CS6 freezes with attempts to change printer settings

    (This problem also occurs with InDesign CS6, so I will post to that forum as well. First one to give me a solution gets my undying love and devotion appreciation.)
    My employer acquired a Canon 6010 printer with a Fiery print controller last year. I have no problems printing from my personal Windows laptop. 
    However, from my employer's iMac (OS X 10.6.8) I get the spinning beach ball of death at least 90% of the time that I open an existing document and attempt to change the printer settings. The only way out is via Force Quit. Inexplicably I can occasionally succeed in changing printer settings. I think the record was having to force quit the application 11 times. Not sure - I quit counting.
    So far our only semi-consistent work around: create a new document and copy and paste the contents from the existing document. Not cool. But sometimes the app freezes with brand new documents, thus destroying my work around anyway.
    Additional Information:
    I have installed all CS6 upgrades.
    Our technical support contractor recreated the problem and could not find any solution other than the work around.
    Canon says the problem is with the applications.
    This happens whether I attempt to change the printer settings immediately or make changes to the document first.
    It does not matter what other applications are running.
    Rebooting the system after the app freezes does not make it work.
    We cannot upgrade past 10.6.8 because of the age of the hardware. But CS6 is supposed to run on Snow Leopard.
    I have tested this with other applications, including some older Adobe software. It does not happen with Microsoft Word, Microsoft Excel, InDesign CS3, Photoshop CS3, Acrobat 8 Pro, Acrobat 9 Pro or Acrobat XI Pro.
    This happens whether the documents were created and saved on the Mac or on a Windows computer.
    Re-saving the documents and/or printer settings does not change the outcome. Once I restart the application Photoshop may remember the paper size, but doesn't remember duplex settings. (From another thread in this forum I suspect a corrupt printer preferences file.)
    Per the instructions in the other thread I reset the printing preferences by launching the app while holding down shift-control-command. That enabled me to change the printer settings one time. Every subsequent attempt brought back the spinning beach ball.
    No other employees report similar problems (including a few MacBook users). However, they do not use Photoshop or InDesign, nor do they typically change printer settings.
    Sorry if some of that is irrelevant - just trying to give you as much info as possible and tell you what I've tried already. Any suggestions?
    Thanks,
    Bonnie

    Nanneri, my situation is similar in that creating the PDF and printing from that does take longer than just printing from InDesign and Photoshop.
    I finally got a Canon tech rep on site who understood my problem. Though we had tried reinstalling the drivers (as had previous Canon reps), this guy got it right. Neither Photoshop nor InDesign has locked up since - at least not for the Canon 6010. (Photoshop has locked up twice when I've attempted to print to a Canon iPF8300s wideformat that isn't on the Fiery. Restarting PS has fixed that.)
    Based on my experience, I would start with new drivers.
    FYI: I am having problems printing to a new Canon C7065 that also uses Fiery. But the problems vary and I haven't isolated the factors. Sometimes I get a printed error report. Sometimes it just doesn't print. But no more software lockups.
    In our case, I suspected our problems were related to having old hardware that can't be upgraded past OS X 10.6.8, which is the oldest OS compatible with both CS6 and the Fiery. But since you are on a newer OS, and a different printer, I'm beginning to wonder about the Fiery.
    Hope you find a solution soon. Keep us posted!

Maybe you are looking for