P3005 prints two letters top left before print job- Help Pls.

It just started doing it and it doesn't happen all the time either. It's very frustrating when I am printing cheques and the first cheque gets used with just two letters in the top left and then the actual print job starts with the second cheque.
I've tried uninstalling the printer and re-installing it but that doesn't help. It's not consistant either.
It also has started happening on another co-workers printer a HP 4250. These printers are not networked and are hooked up to our PC's (Windows XP).
I am the tech guy for our hotel but not a professional and I can't figure it out. No settings have been changed.

You can have the msgsend calss as an utility class
with out a main method. Change the main method to
some other name like sendMessage.
import that class in your servlet email2.
If msgsend is in a package, you can do import somepackage.msgsend
msgsend emailMes =new msgsend(filename);
then,
emailMes.sendMessage();
Hope this helps.

Similar Messages

  • Print job help puttin two movieclips on the one page.

    I am using the printjob function to print off a movieclip,
    however.. i need to print off another movieclip on the same page
    and cant seem to do it, how is it done? currently my code is like
    this:
    pj.addPage(cert, {xMin:-400, xMax:600, yMin:-400, yMax:800});
    my instance name for my other movieclip is "white"

    What do you want then? Can you describe how you like to position the text?
    In word processing document you can use layout breaks and column beaks to get two text columns beside each other.
    You can also use text boxes, one for each language. You can even use Shapes as text boxes.

  • I lost my toolbar, tabs on top and bottom. Don't even have the Firefox name at top left to acces the help option.

    The Firefox name and the bar at the top w/ bookmarks, etc. and the bar at the bottom have disappeared. I've tried solutions but w/out the Firefox name and the bottom bar, I don't know what to do. And, yes, I'm a computer dummy who only wants to use her computer the way it did a few hours ago. Thank you so very much.

    Please see [[Customize Firefox controls, buttons and toolbars]]

  • Why does my iphone steady say "searching"...i erased everything and now it wont activate because it says "Searching" in the top left corner

    Why does my iphone steady say "searching"...i erased everything and now it wont activate because it says "Searching" in the top left corner..PLEASE HELP ASAP!!!

    1. Close all inactive apps in the Task Bar. Double-click the Home button and hold apps down for a second or two. Tap the minus sign to close app.
    2. Hold the Sleep and Home button down for about 10 seconds until you see the Apple Logo.

  • Need Printing Help (location to top-left?)

    im able to print out a JFrame, no problem..but the onscreen image and whats printed on paper arent exactly the same
    1) Printed is 1.5 - 2X bigger than onscreen (1280x1024 resolution)
    2) Printed starts near the middle of the page, not at the top left hand corner
    public class PrintUtilities implements Printable {
      private Component componentToBePrinted;
      public static void printComponent(Component c) {
        new PrintUtilities(c).print();
      public PrintUtilities(Component componentToBePrinted) {
        this.componentToBePrinted = componentToBePrinted;
      public void print() {
        PrinterJob printJob = PrinterJob.getPrinterJob();
        printJob.setPrintable(this);
        if (printJob.printDialog())
          try {
            printJob.print();
          } catch(PrinterException pe) {
            System.out.println("Error printing: " + pe);
      public int print(Graphics g, PageFormat pageFormat, int pageIndex) {
        if (pageIndex > 0) {
          return(NO_SUCH_PAGE);
        } else {
          Graphics2D g2d = (Graphics2D)g;
          g2d.translate(pageFormat.getImageableX(), pageFormat.getImageableY());   
          disableDoubleBuffering(componentToBePrinted);
          componentToBePrinted.paint(g2d);
          enableDoubleBuffering(componentToBePrinted);
          return(PAGE_EXISTS);
      /** The speed and quality of printing suffers dramatically if
       *  any of the containers have double buffering turned on.
       *  So this turns if off globally.
       *  @see enableDoubleBuffering
      public static void disableDoubleBuffering(Component c) {
        RepaintManager currentManager = RepaintManager.currentManager(c);
        currentManager.setDoubleBufferingEnabled(false);
      /** Re-enables double buffering globally. */
      public static void enableDoubleBuffering(Component c) {
        RepaintManager currentManager = RepaintManager.currentManager(c);
        currentManager.setDoubleBufferingEnabled(true);
    }by simply calling PrintUtilities.print(myJFrame), it prints. how can i maka the onscreen and the printed page be "exact size" and how can i make it start printing from the top left hand corner?
    thanks
    i tried using myMainPanel.setLocation(0,0); in the gui construction...and also setting g2d.setFont(smallerFont); from PrintUtilities..but doesnt work at all
    any ideas? thanks

    You should change some piece of code ....Just change the part in :
    public int print(Graphics g, PageFormat pageFormat, int pageIndex) {...}
    function.
    1) scale the graphics to see the whole screen on the page
    /**copy this code before
    * "componentToBePrinted.paint(g2d);"
    *line
    Dimension dimension=componentToBePrinted.getSize();
    g2d.scale( 1.0*pageFormat.getWidth()/dimension.width,
    1.0*pageFormat.getHeight()/dimension.height );
    // "1.0*" is for casting to double2) delete the code line :
    g2d.translate(pageFormat.getImageableX(), pageFormat.getImageableY());to start drawingfrom (0,0) coordinate

  • C3180 is printing 2345x in top left corner of blank pages every time i print

    Every time I print anything from my Mac Book Pro (running Mavericks 10.9), my C3180 spits out a page with 2345x printed in the top left corner of an otherwise blank page.  Wasting my paper and my ink.  
    Anyone have any suggestions?
    This question was solved.
    View Solution.

    Thanks all for the information.  We are taking a look at what this might be.    Is it printing this out on a single sheet after the desired print, or on the same page or a combination?  Any additional details will greatly help trying to track this issue down to root cause.

  • Printing on Top left Corner of a page

    Hi,
    I have written a java program to print , i am not able to print on the top left corner(Extreme),
    even though i specify my X and Y co-ordinates are 0 ,0 . please help me in printing on the top left corner .
    find below my java program.
         Author
         Manju
         PrinterJob prnJob = PrinterJob.getPrinterJob ();
    PrintDetails m_pr = new PrintDetails();
    // Create a new book to add pages to
    Book book = new Book ();
    PageFormat format = new PageFormat();
    Paper paper=new Paper();
    // Set the imagable area to 300.0 and 435.0
    paper.setImageableArea(0.0,0.0,300.0,435.0);
    // Set the paper size to 300 width and 435 width.
    paper.setSize(300,435);
    format.setPaper(paper);
    book.append (new Document (), format);
    // Tell the prnJob to use the Book as the Pageable object
    prnJob.setPageable (book);
    * Get the value from the properties file to print to
    * the appropriate printer (Preferred Printer)
    * Property names are
    * 1. PRINTER_1
    * 2. PRINTER_2
    * Example :-
    * PRINTER_1=Microsoft Office Document Image Writer
    * PRINTER_2=\\\\igtewf39\\TVS MSP 345/Champion/XL Classic
    * PRINTER_2 is having the proper value while PRINTER_1 is not.
    * Printer name should have the server name Pre-fixed to it.
    String prefferedPrinter = null;
    if(args.length > 0) {
    System.out.println("args0" + args[0]);
    if(args[0].equals("1")) {
    prefferedPrinter = m_pr.getProperty("PRINTER_1");
    else {
    prefferedPrinter = m_pr.getProperty("PRINTER_2");
    * Get the printer from the list.
    * Print the contents to the printer
    * There might be lot of Printers configured in the system
    * We have to get the contents printed on our preferred Printer.
    PrintService[] array = PrinterJob.getPrinterJob().lookupPrintServices();
    int device= -1;
    for (int i=0; i<array.length;i++)
    if(prefferedPrinter.equalsIgnoreCase(array.getName())) device=i;
    try {
    prnJob.setPrintService(prnJob.lookupPrintServices()[device]);
    // The number of copies can be changed to 2 or three . Default will be one.
    prnJob.setCopies(1);
    prnJob.print();
         } catch (Exception PrintException) {
         PrintException.printStackTrace();
    Regards
    Manju

    Most printers will not print to the very edge of the paper if the printer has been told what size paper is loaded and that is, in fact, what is loaded. Check the printer printing limits.

  • Printer Characters on Top Left

    Hi, When I print any oracle apps, report using USLWPORTRAIT style on my dot matrix printer, the printer initilialization characters like '0o0P8D2SU2A' etc., are always printed on top left of my report.( on the first page)
    Pls let me know how to avoid this.

    I'm guessing your with T-Mobile or Orange. They share the signal and the joint service is Everyone Everywhere or summat like that...I can't remember exactly but yeah EE xD
    Hope this helps put your mind at ease xD

  • When printing an email the subject line appears top left, can I change this to my name ?

    Have changed computers & previously my name would appear top left when I printed an email. Work in a large office & all using same printer, so now when I print an email its not so easy to find it.

    Select email
    File > Print Preview
    a window opens showing email to be printed.
    click on 'Page Setup' button
    click on 'Margins & header/footer' tab
    Under 'Headers & Footers'
    click on first drop down - and select 'Custom.. '
    by default it usually says 'Title' which refers to 'Subject'
    A small window opens allowing you to 'Enter your custom header/ footer text'.
    Type in your name and click on OK
    The preview window will refresh so that you can see the changes.

  • Last two letters do not print

    I have a formula column cf_1 in my report 'purchase order'which actually converts the numeric value of a summary column 'AMOUNT' to the character form.This is to show the amount both in words&numerical figures.Next to cf_1 I have attached a text string 'only' and the same has been anchored to cf_1.The horizontal elasticity property of cf_1 is set to 'variable'.Ideally at run time, the formula coulmn with the text string,for example, should read 'ONE HUNDERD ONLY'.But it always omits the last two letters of cf_1 and instead gives the output like this-'ONE HUNDR ONLY'.Can anybody tell me as to how this problem can be fixed?
    My Oracle version 8i& Reports 6i
    Thank you in advance
    Jay

    This is possibly to do with the "width" of the formula column - it's probably set to "10" and is therefore truncated at this point.
    Another way of creating your output, rather than having variable sized fields and anchors, is to just have a single boilerplate object. You can reference the formula column directly in the boilerplate object and insert any surrounding text: eg: "&<cf_1> only". This will give you the output you want without requiring the field and is simpler to debug and manage.

  • P2055 randomly runs a Print Page before a job, and randomly when computer is on

    Before many print jobs, the P2055dn prints a page that is blank except for the follwing at the top of the page:  GET /DevMgmt/DiscoveryTree.xml  HTTP/1.1
    Host: 127.0.0.1:8080
    How can I make this stop?  I have the latest print drivers.  Running Win 7 64 bit.

    2605dn has same problem as P2055 randomly runs a Print Page before a job, and randomly when computer is on
    Before many print jobs, the 2605dn prints a page that is blank except for the follwing at the top of the page: GET /DevMgmt/DiscoveryTree.xml HTTP/1.1
    Host: 127.0.0.1:8080
    How can I make this stop? I have the latest print drivers. Running Win 7 64 bit.
    The fix for the 2055dn does not work on the 2605dn so does anyone have a fix for 2605dn - tech help and driver useless as usual

  • P3005 error message PCL XL error IllegalMediaSource extra sheet printed after every print job

    We have a networked P3005 with a stepped back PCL5e driver working for three Word 2003 people and one Word 2007 person. Out of the blue the Word 2007 person began getting an extra sheet of paper after every print job with the error message PCL XL error  Warning: IllegalMediaSource. We had gotten a version of this error before, which is why I stepped back the driver to PCL5e.
    Anyone have any thoughts? Please??

    I have not had any problems since I read a post from someone to turn the printer off unplug the power cord from it and wait a little bit.  Plugged it back in, turned it on and it has been working.   I am using Vista 32 bit.  I'm not sure this is what you are wanting on the driver.  I found this  HPC14106 .GPD    3.25.2010
    Thanks

  • Hello guys i trust you are well .my phone keeps saying searching in the top left hand corner where my cellphone providers name is supposed to be ,this has happened before but i just connected it to the pc to restore but this time it hung up half way.help

    hey guys i trust you are well .my phone has a problem where it says searching in the top left corner where my service providers name is supposed to be ,it has done this before i fix it by connecting to itune on my pc this time it got stuck in setup mode and cannot find a activation server.and itunes says it cannot fix the problem and i should contact support hence this message please help .thank you in advance

    Hey jay_bek,
    Thanks for using Apple Support Communities.
    If you encounter no signal or searching on your iPhone, follow these steps to try to resolve the issue.
    iPhone: Troubleshooting No Service
    http://support.apple.com/kb/ts4429
    Turn your iPhone off, then on again.
    Remove the SIM card and verify that it's a valid, carrier-manufactured SIM. Also verify that it isn't damaged, worn, or modified. Then reinsert it.
    Have a nice day,
    Mario

  • How do I eliminate the pop up asking for an alignment before every print job?

    I use a ton of ink at my job and I don't want to align the printer everytime I install a new cartridge but I am also sick to death of having a pop-up window for "Alignment Recommended" before every print job.  How do I turn off these pop-ups

    You can not.  You must align the cartridges for best performance every time.  Sorry.
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • OfficeJet 8500A. Single print job prints half on two pages.

    I have an OfficeJet 8500A Premium for about a year now. All was working well, until recently.
    I'm using Firmware Version: LRP1FN1126AR
    Now, when I send a print job that's supposed to be on a single page, it prints half on two pages. This, of course, wastes my ink, paper, time, energy, and sanity. I've searched around and can't find a resolution to this problem.
    I posted a picture of the problem I'm experiencing, personal info areas blurred out. The only way to fix this, which is a temporary fix, is to turn the printer on and off. That seems to correct the problem, but only for a short while, since it will eventually start printing single print jobs split on two pages.
    Please help. Thanks.

    It sounds like the driver for the printer and the driver for the IE9 are having a conflict. I would advise trying to open the same page in a different web browser to see if the problem follows multiple browsers, or only IE9.
    Also, I would try reverting back to IE8 as a possible workaround. If none of these are able to get the printouts desired, then I would look at Shane_R's thread on using an alternate driver located here.
    Hope this helps.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------
    I am not an HP employee.

Maybe you are looking for

  • Word templates as activity attachments

    We are attaching Word docs to CRM activities. We would like to use the document create functionality that is a part of the attachment tool bar in an activity. Is there any way to call a specific word document template without setting the template as

  • Multiple Realms in Apache Tomcat

    Sorry, if this is the wrong forum, but its the closest match i could find. I am trying to run 2 servlets that use apache tomcat's j_security with a FORM login to authenticate clients. I would like these 2 servlets to be authenticated by having j_secu

  • OA Framework Larger Numbers in view objects

    Hi, We have an OAF page with a simple table layout. One of the field allows user to enter a number. The next field is calculated automatically based on user input in the earlier field upon clicking save button. An example is: Field 1 (Number, user in

  • Photoshop CS crashing when changing font

    Hi, I've recently installed Photoshop CS version 8.0 on my pc and even though I'm able to design in it as normal, when I come to create a text layer and try changing the font, Photoshop instantly freezes and then crashes, sending an error report sayi

  • Which MS Office version to install

    I've read a number of posts about this but just get more confused. I know I will need to uninstall the test version of MS Office 2004. It also seems that I can't use MS Office 2004 Virtual PC(as if I would want to--I'm bi-platform and know which one