Pages Not Printed Completely

Hi,
Please find below my test code for printing a JPanel.However, the problem is that part of the first page at the bottom and first line is clipped.I have tried my best to find the problem but to no avail.
I want to print the whole JPanel since more stuff will be coming into it and not the JTable alone.
Thanks
import java.awt.print.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.print.*;
class PrintTest2 extends JPanel implements ActionListener,Printable{
JTable jt;
JButton print,cancel;
PrintTest2(){
Object[][] data = {
{"Mary", "Campione",
"Snowboarding", new Integer(5), new Boolean(false)},
{"Alison", "Huml",
"Rowing", new Integer(3), new Boolean(true)},
{"Kathy", "Walrath",
"Chasing toddlers", new Integer(2), new Boolean(false)},
{"Sharon", "Zakhour",
"Speed reading", new Integer(20), new Boolean(true)},
{"Angela", "Lih",
"Teaching high school", new Integer(4), new Boolean(false)},
{"Mary", "Campione",
"Snowboarding", new Integer(5), new Boolean(false)},
{"Alison", "Huml",
"Rowing", new Integer(3), new Boolean(true)},
{"Kathy", "Walrath",
"Chasing toddlers", new Integer(2), new Boolean(false)},
{"Sharon", "Zakhour",
"Speed reading", new Integer(20), new Boolean(true)},
{"Angela", "Lih",
"Teaching high school", new Integer(4), new Boolean(false)},
{"Mary", "Campione",
"Snowboarding", new Integer(5), new Boolean(false)},
{"Alison", "Huml",
"Rowing", new Integer(3), new Boolean(true)},
{"Kathy", "Walrath",
"Chasing toddlers", new Integer(2), new Boolean(false)},
{"Sharon", "Zakhour",
"Speed reading", new Integer(20), new Boolean(true)},
{"Angela", "Lih",
"Teaching high school", new Integer(4), new Boolean(false)},
{"Mary", "Campione",
"Snowboarding", new Integer(5), new Boolean(false)},
{"Alison", "Huml",
"Rowing", new Integer(3), new Boolean(true)},
{"Kathy", "Walrath",
"Chasing toddlers", new Integer(2), new Boolean(false)},
{"Sharon", "Zakhour",
"Speed reading", new Integer(20), new Boolean(true)},
{"Angela", "Lih",
"Teaching high school", new Integer(4), new Boolean(false)},
{"Mary", "Campione",
"Snowboarding", new Integer(5), new Boolean(false)},
{"Alison", "Huml",
"Rowing", new Integer(3), new Boolean(true)},
{"Kathy", "Walrath",
"Chasing toddlers", new Integer(2), new Boolean(false)},
{"Sharon", "Zakhour",
"Speed reading", new Integer(20), new Boolean(true)},
{"Angela", "Lih",
"Teaching high school", new Integer(4), new Boolean(false)},
{"Mary", "Campione",
"Snowboarding", new Integer(5), new Boolean(false)},
{"Alison", "Huml",
"Rowing", new Integer(3), new Boolean(true)},
{"Kathy", "Walrath",
"Chasing toddlers", new Integer(2), new Boolean(false)},
{"Sharon", "Zakhour",
"Speed reading", new Integer(20), new Boolean(true)},
{"Angela", "Lih",
"Teaching high school", new Integer(4), new Boolean(false)},
{"Mary", "Campione",
"Snowboarding", new Integer(5), new Boolean(false)},
{"Alison", "Huml",
"Rowing", new Integer(3), new Boolean(true)},
{"Kathy", "Walrath",
"Chasing toddlers", new Integer(2), new Boolean(false)},
{"Sharon", "Zakhour",
"Speed reading", new Integer(20), new Boolean(true)},
{"Angela", "Lih",
"Teaching high school", new Integer(4), new Boolean(false)},
{"Mary", "Campione",
"Snowboarding", new Integer(5), new Boolean(false)},
{"Alison", "Huml",
"Rowing", new Integer(3), new Boolean(true)},
{"Kathy", "Walrath",
"Chasing toddlers", new Integer(2), new Boolean(false)},
{"Sharon", "Zakhour",
"Speed reading", new Integer(20), new Boolean(true)},
{"Angela", "Lih",
"Teaching high school", new Integer(4), new Boolean(false)},
{"Mary", "Campione",
"Snowboarding", new Integer(5), new Boolean(false)},
{"Alison", "Huml",
"Rowing", new Integer(3), new Boolean(true)},
{"Kathy", "Walrath",
"Chasing toddlers", new Integer(2), new Boolean(false)},
{"Sharon", "Zakhour",
"Speed reading", new Integer(20), new Boolean(true)},
{"Angela", "Lih",
"Teaching high school", new Integer(4), new Boolean(false)},
{"Mary", "Campione",
"Snowboarding", new Integer(5), new Boolean(false)},
{"Alison", "Huml",
"Rowing", new Integer(3), new Boolean(true)},
{"Kathy", "Walrath",
"Chasing toddlers", new Integer(2), new Boolean(false)},
{"Sharon", "Zakhour",
"Speed reading", new Integer(20), new Boolean(true)},
{"Angela", "Lih",
"Teaching high school", new Integer(4), new Boolean(false)},
{"Mary", "Campione",
"Snowboarding", new Integer(5), new Boolean(false)},
{"Alison", "Huml",
"Rowing", new Integer(3), new Boolean(true)},
{"Kathy", "Walrath",
"Chasing toddlers", new Integer(2), new Boolean(false)},
{"Sharon", "Zakhour",
"Speed reading", new Integer(20), new Boolean(true)},
{"Angela", "Lih",
"Teaching high school", new Integer(4), new Boolean(false)},
{"Mary", "Campione",
"Snowboarding", new Integer(5), new Boolean(false)},
{"Alison", "Huml",
"Rowing", new Integer(3), new Boolean(true)},
{"Kathy", "Walrath",
"Chasing toddlers", new Integer(2), new Boolean(false)},
{"Sharon", "Zakhour",
"Speed reading", new Integer(20), new Boolean(true)},
{"Angela", "Lih",
"Teaching high school", new Integer(4), new Boolean(false)},
{"Mary", "Campione",
"Snowboarding", new Integer(5), new Boolean(false)},
{"Alison", "Huml",
"Rowing", new Integer(3), new Boolean(true)},
{"Kathy", "Walrath",
"Chasing toddlers", new Integer(2), new Boolean(false)},
{"Sharon", "Zakhour",
"Speed reading", new Integer(20), new Boolean(true)},
{"Angela", "Lih",
"Teaching high school", new Integer(4), new Boolean(false)}
String[] columnNames = {"First Name",
"Last Name",
"Sport",
"# of Years",
"Vegetarian"};
print     =      new JButton("PRINT");
print.setPreferredSize(new Dimension(120,30));
print.addActionListener(this);
cancel     =      new JButton("CANCEL");
cancel.setPreferredSize(new Dimension(120,30));
try{
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
}catch(Exception e){
System.out.println("Can't set Look And Feel");
jt = new JTable(data,columnNames);
setLayout(new BorderLayout());
JPanel j = new JPanel();
j.add(print);
j.add(cancel);
add(j,"South");
add(jt);
public void actionPerformed(ActionEvent e) {  
PrinterJob printJob = PrinterJob.getPrinterJob();
PageFormat format = new PageFormat();
Paper paper = new Paper();
paper.setImageableArea(0.0,0.0,700.0,468.0);
format.setPaper(paper);
format = printJob.pageDialog(format);
     System.out.println("ImageableX is "+format.getImageableX()+"ImageableY is "+format.getImageableY());
System.out.println("Paper Width is "+format.getWidth()+"Paper Height is "+format.getHeight());
printJob.setPrintable(this);
     if(printJob.printDialog()){
try {
printJob.print();
} catch (Exception PrintException) {
public int print(Graphics g,PageFormat p,int index) throws PrinterException{
double scale=1.0;
//width & height of panel
int panelWidth = this.getWidth();
int panelHeight = this.getHeight();
System.out.println("panel j height" + this.getHeight() + " width of j is "+ this.getWidth());
// page width
double imageableWidth = p.getImageableWidth();
double imageableHeight = p.getImageableHeight();
System.out.println("imageable height is " + imageableHeight + " imageable width is "+ imageableWidth);
FontMetrics f = g.getFontMetrics();
int fontHeight = f.getHeight();
int descent = f.getDescent();
System.out.println("Font height " + fontHeight + " Font descent is "+ descent);
if(panelWidth > imageableWidth){
scale = imageableWidth/panelWidth;
System.out.println("scale is" + scale);
int totalNumPages = (int)Math.ceil(panelHeight / imageableHeight) ;
int panelWidthOnPage = (int)(panelWidth * scale);
System.out.println("Total Number of Pages is " totalNumPages  " Panel Width On Page is "+ panelWidthOnPage);
if(index >= totalNumPages ){
return NO_SUCH_PAGE;
System.out.println("index value is "+ index);
Graphics2D g2 = (Graphics2D)g;
g2.translate(p.getImageableX(),p.getImageableY());
if(index==0){
g2.translate(0f,0f);
// g2.setClip(0,(int)imageableHeight*index,(int)imageableHeight+100,panelWidthOnPage);
g2.scale(scale,1);
paintChildren(g2);
return this.PAGE_EXISTS;
} else{
g2.translate(0f,-index*imageableHeight);
g2.setClip(0,(int)imageableHeight*index,(int)imageableHeight,panelWidthOnPage);
g2.scale(scale,1);
paintChildren(g2);
return this.PAGE_EXISTS;
public static void main(String args[]){
JFrame jf = new JFrame("PrintTest2");
JScrollPane js = new JScrollPane(new PrintTest2());
jf.setContentPane(js);
jf.pack();
jf.setSize(700,550);
jf.setVisible(true);

Hello there. I think my previous post may have caused more confusion. Until this morning I had been using jdk1.3.1-09, but found it necessary to change to a more recent version (j2sdk1.4.0). In doing so I found that the printing issues I had been working around in jdk1.3.1-09 had been fixed in j2sdk1.4.0, so I went back to your code and had another look.
Forget all the margin stuff. This version seems to work well apart from not drawing the lines across the top and down the left side.
import java.awt.print.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.print.*;
class PrintTest2 extends JPanel implements ActionListener,Printable
    JTable jt;
    JButton print,cancel;
    PrintTest2()
        Object[][] data = {
                            "Mary",
                            "Campione",
                            "Snowboarding",
                            new Integer(5),
                            new Boolean(false)
                            "Alison",
                            "Huml",
                            "Rowing",
                            new Integer(3),
                            new Boolean(true)
                            "Kathy",
                            "Walrath",
                            "Chasing toddlers",
                            new Integer(2),
                            new Boolean(false)
                            "Sharon",
                            "Zakhour",
                            "Speed reading",
                            new Integer(20),
                            new Boolean(true)
                            "Angela",
                            "Lih",
                            "Teaching high school",
                            new Integer(4),
                            new Boolean(false)
        String[] columnNames = {
                                "First Name",
                                "Last Name",
                                "Sport",
                                "# of Years",
                                "Vegetarian"
        print = new JButton("PRINT");
        print.setPreferredSize(new Dimension(120,30));
        print.addActionListener(this);
        cancel = new JButton("CANCEL");
        cancel.setPreferredSize(new Dimension(120,30));
        try
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        catch(Exception e)
            System.out.println("Can't set Look And Feel");
        jt = new JTable(data,columnNames);
        setLayout(new BorderLayout());
        JPanel j = new JPanel();
        j.add(print);
        j.add(cancel);
        add(j,"South");
        add(jt);
    public void actionPerformed(ActionEvent e)
        PrinterJob printJob = PrinterJob.getPrinterJob();
        PageFormat format = new PageFormat();
        Paper paper = new Paper();
        format.setPaper(paper);
        System.out.println("1 ImageableX is " +
                           format.getImageableX() +
                           "1  ImageableY is " +
                           format.getImageableY());
        System.out.println("1 Paper Width is " +
                           format.getWidth() +
                           "1  Paper Height is " +
                           format.getHeight());
// WDH        printJob.setPrintable(this);
//                             THIS ^ WAS THE MAIN CULPRIT
        printJob.setPrintable(this,format);
        if(printJob.printDialog())
            System.out.println("2 ImageableX is " +
                               format.getImageableX() +
                               "2  ImageableY is " +
                               format.getImageableY());
            System.out.println("2 Paper Width is " +
                               format.getWidth() +
                               "2  Paper Height is " +
                               format.getHeight());
            try
                printJob.print();
            catch (Exception PrintException)
    public int print(Graphics g,
                     PageFormat p,
                     int index)
               throws PrinterException
        double scale=1.0;
        // width & height of panel
        int panelWidth = this.getWidth();
        int panelHeight = this.getHeight();
        System.out.println("panel j height" +
                           this.getHeight() +
                           " width of j is "+ this.getWidth());
        // page width
        double imageableWidth = p.getImageableWidth();
        double imageableHeight = p.getImageableHeight();
        System.out.println("3 ImageableX is " +
                           p.getImageableX() +
                           "3  ImageableY is " +
                           p.getImageableY());
        System.out.println("3 Paper Width is " +
                           p.getWidth() +
                           "3  Paper Height is " +
                           p.getHeight());
        FontMetrics f = g.getFontMetrics();
        int fontHeight = f.getHeight();
        int descent = f.getDescent();
        System.out.println("Font height " +
                           fontHeight +
                           " Font descent is " +
                           descent);
        if(panelWidth > imageableWidth)
            scale = imageableWidth/panelWidth;
            System.out.println("scale is" + scale);
        int totalNumPages = (int)Math.ceil(panelHeight / imageableHeight) ;
        int panelWidthOnPage = (int)(panelWidth * scale);
        System.out.println("Total Number of Pages is " +
                           totalNumPages +
                           " Panel Width On Page is " +
                           panelWidthOnPage);
        if(index >= totalNumPages)
            return NO_SUCH_PAGE;
        System.out.println("index value is " + index);
        Graphics2D g2 = (Graphics2D)g;
        g2.translate(p.getImageableX(),p.getImageableY());
        if(index==0)
            g2.scale(scale,1);
            paintChildren(g2);
            return this.PAGE_EXISTS;
        else
            g2.translate(0f,-index*imageableHeight);
            g2.setClip(0,
                       (int)imageableHeight*index,
                       (int)imageableHeight,
                       panelWidthOnPage);
            g2.scale(scale,1);
            paintChildren(g2);
            return this.PAGE_EXISTS;
    public static void main(String args[])
        JFrame jf = new JFrame("PrintTest2");
        JScrollPane js = new JScrollPane(new PrintTest2());
        jf.setContentPane(js);
        jf.pack();
        jf.setSize(700,550);
        jf.setVisible(true);
}

Similar Messages

  • HP LaserJet Pro 400 Printer M401a (CF270A) is not printing complete statement on letterhead

    Dear
    i have supplied printer HP LaserJet Pro 400 Printer M401a (CF270A)Qty 10 to my customer but its not printing complete statement there is missing ink in the words and also spots are coming on the page.
    the page is letterhead of the company.
    could you please advise what will be reason.
    Waiting for your reply.
    Regards
    Faisal Farooq

    VII,
    This seems to be a commercial product. For the best chance at finding a solution I would suggest posting in the forum for HP Business Support!
    You can find the Commercial Laserjet board here:
    http://h30499.www3.hp.com/t5/Printers-LaserJet/bd-p/bsc-413
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • Printer not printing completely

    I purchased an HP2540 all in one printer yesterday, hooked it up to my Dell computer, running Windows Vista.  I did the complete set up, downloaded software, registered the printer online, etc.  Everything seemed to be okay until I tried to print the first document.  The page did not print completely. At approximately every inch part of a line  did not print correctly.  The printed line looked faint and only partially printed.  The document did this throughout.  Any solutions?

    Hi, take a look at this link for a possible solution.
    Please mark the post that solves your issue as "Accept as Solution".
    If my answer was helpful click the “Thumbs Up" on the left to say “Thanks”!
    I am not a HP employee.

  • Pages not loading completely

    I am seeing intermittent issues with web pages not loading completely, or taking a long time to load. Some times embedded images will not load. The page will often load, but the page loading icon in chrome will carry on spinning. 
    This is happening periodically and at various times of the day, but has been going on for a couple of weeks. The rest of the time, my broadband speeds are fine and very snappy, as normal. 
    I've restarted my router (homehub 3) several times.
    This doesn't seem to be a general speed problem.
    Using speedtest.net, i can see that my download speed is pretty consistent at just under 20mbps. 
    Using pingtest.net i see no packet loss, with good ping times.  
    Using the BT speedtest tool, my line speed to the house is around 23mbps, and my download speed is again around 20mbps.
    This is effecting all devices attached to the router, both wired and wifi... both windows PC/laptops and ipad/iphone devices. 
    I am not sure where to look next, and am kind of dreading a conversation with BT helpdesk. 
    Any ideas? 

    Thanks... That's a long thread, and I am not going to pretend to understand all of it. 
    It seems to be similar issue, but I am seeing this any webiste, including this one, not just on a handful of specific sites. 
    If I understand the thread above correctly, that issue is with BT, and was apparantly fixed, although the most recent post suggests it has not been. And that if this is the same problem, I can't do anything to fix this myself, other than raise this BT?
    Having played around a little more, I think I can see that this problem becomes more accute when i am jumping rapidly from one webpage to another in quick succession, until i get to the point where pages are just not loading anymore. 

  • If I choose any i-works draft, I only can get one page not the complete draft

    If I choose any i-works draft, I only can get one page not the complete draft

    Mousing shows all the available pre-formatted page available in each template to give you an idea what is there, but you only get one, sometimes 2, when you create a new document. All of the other pages can be accessed via the Insert menu. Insert > Sections in word processing & Insert > Pages in page layout.
    If they all loaded when you opened a template, you'd have to go through & delete the ones you don't want & duplicate the ones you want more than one of.
    FYI: the name of the program is iWork, no 's' & no hyphen

  • Top third of second and subsequent pages not printing Photosmart 5520

    Priniting documents in Photosmart 5520
    Top third of second and subsequent pages not printing Photosmart 5520
    Thank you
    A

    Hello @Andyroo9 , and welcome to the HP Forums!
    I see you are looking into print issues. 
    I would love to try and help you, but I do need a little information first. I am linking a few HP Support documents below that will show you how to find which operating system you are using. Also, if you're using Windows, please include whether your operating system is 32-bit or 64-bit. With this information we can provide you with accurate information.
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Also, do you have any issues making a copy?
    Does this issue occur from multiple programs?
    Please let me know what you find.  Thanks for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Printer not pring mutiple pages not printing using Brwser Firefox 2.0.0.18

    I have a vintage iBook Clamshell with OS X 10.4.9 and use a Deskjet 5440 prinnter that is used solely for this computer.  When printing multiple pages from the web, the DJ 5440 only prints the first page ( only the first couple of lines) and does not print the remainder of the document.  The printer prints out the complete documentusing Safari 1.3.2 and Opera 9.6.4.  What do I need to do so that the printer complees the who document.                                                                                                                                                                                                                                                                                       Thanks in advance 

    krigun wrote:Firefox 2.0.0.9 crashes very often here aswell. KDE + gtk-qt-engine. Running gmail (= LOT of JavaScript) for a longer period of time seems to cause the crash, but I cannot be sure.
    My ff crashes often after change in window focus. I press Alt+Tab and it dies... I'm not using gtk-qt-engine. Just installed QtCurve for GTK. I'll try with gtk-qt-engine.

  • Pages not loading completely or at all.

    This is a problem I've been having for weeks and weeks. Pages in Safari (or in IE or in Firefox) will not load completely or at all. For example, the apple.com homepage does not load at all and neither does ebay. However, the amazon homepage will load almost completely, but a few of the images don't appear.
    I've tried numerous ideas.
    I've run through the power cycle. (Turning my router and cable modem off, and then restarting them.)
    I've run network diagnotics.
    I've reset Safari.
    I've typed in IP addresses manually.
    We bought a new router.
    It even got down to me having to reinstall the operating system. (The computer is fairly new, so there wasn't any important information on it.)
    I tried calling my ISP, but they don't know what's wrong.
    Apple won't speak to me because my 90 days is up, and my parents won't pay $160 for the care plan.
    I'm becoming desperate at this point. I love my new iMac, but there isn't much I can do without the web.
    Oh, I also can't download updates, access the iTunes music store, or anything else that requires internet acces.
    We have three windows computers in the house that are all running fine on the WLAN.
    Any help would be GREATLY appreciated.

    Any other ideas?
    Hmm, can you try logging into another user account to see if the problem is present there as well? This will confirm where the root issue is - your user area or system wide. It sounds like it wil be system wide but best to double check.
    If you don't have another account you can use System Preferences -> Accounts -> [+] to create a test one (and [-] to remove it if needed).
    I've typed in IP addresses manually.
    Can you expand on what you mean by that? Are you referring to the DNS addresses or typing the IP address in the browsers address entry box?

  • Smart form back page not printing

    Hi All,
    in a smrt form I am using two pages as first page and term page. for first page the next page is term page with no condition, but it is not getting printed.
    help please.
    T & R,
    AKS

    If both of ur pages are using main windows then it will not print.
    For this you can do one thing let ur first page hold a main window and here donot mention anything in page attributes next page.
    simply create a command. check goto next page : term page
    Now create a term page and create a secondary window which is of exact size as first window. and page attributes next page :be empty
    If you are asking for term page should be printed at the back of first page. then your first page o/p options select print mode to be D (double sided)

  • Alignment page not printing after installing new cartridge

    I just installed a new ink cartridge on my 1210 printer and the cartidge alignment page will not print. My printed docs look like I am using a shadow font.
    How do I get the alignment page to print?

    This document may help:
    alignment problems
    007OHMSS
    I was a support engineer for HP.
    If the advice resolved the situation, please mark it as a solution. Thank you.

  • Friends need help desperate-- Second page not printing from the beginning

    Hi Friends,
    I have a large layout whose main-section is 8.5x20 (Width&height) which has 2 frames each having 2 repeating frames and about 20 fields in each repeating frame. When I run the report it shows the report right, but when I print, it prints only the first half since the report is long. When I change the property of the second frame of 'Page break before' to 'yes' it prints the second frame on the second page but print it at the same position as it printed on the first, and top of second page is all blank. How do I make to print from the beginning of the second page. Need your help.
    Thanks
    Joe.

    Hello,
    Most of the times, these problem are solved by "enclosing" the "Repeating frames" in frames with "Vertical Eleasticity" set to "Variable"
    Regards

  • My Officejet 6500A Plus will not print complete page in wireless mode

    When printing any documents, big or small, my 6500A Plus prints a couple sentences per page... and takes about 2 minutes between.  So to print a word document with 3 paragraphs... paragraph 1 comes out on a page after 2 mins... then 2 minutes later the second paragraph comes out on a seperate page... and so on.  The wireless router (d-link N speed) is in the same small room (is 8 feet away) with nothing in between to cause interference.  Can watch you tube videos in high definition on the other side of the house via wireless so I know it is not the network speed/bottleneck.  If I connect a network cable... it prints perfectly.
    The document to print is a simple work document with no graphics or compicated items.  It's almost like the printer can only process a few sentences at a time... then goes back to get the next coupld and prints them
    Running windows 7 on my HP notebook.

    Hey Steve564,
    It sounds like the communciation between your 6500a Plus and your network has developed an issue.  I would advise performing the steps listed below.
    From the home screen of the printer press the Right Arrow
    Select the Setup menu
    Select Network submenu
    Scroll to the bottom of the list and select Restore Network Defaults
    After the network defaults have been restored, then I would perform a network power cycle following the below steps.
    Follow these steps to reset your HP printer, your wireless router, and your computer.
    Press the Power button on the HP printer to turn it off.
    Disconnect the power cord from the rear of the HP printer.
    Disconnect the power cord from the wireless router.
    Turn off the computer.
    Wait 30 seconds.
    Reconnect the power cord to the wireless router.
    Wait 30 seconds, or until the router is fully on and ready.
    Turn the computer back on.
    Wait for the computer to reload.
    Reconnect the power cord to the rear of the HP printer.
    Turn the printer back on.
    Once this is done, then I would run the Wireless Setup Wizard in the Setup>Network menu to reconnect to the network.  At this point are you able to print normally?
    Jason
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------
    I am not an HP employee.

  • Page not printing on Dot Matrix Printer

    Dear Experts,
    I had requirment to print the PO layout on a stationary which is bigger than a4 and bit lesser than a3
    I found that page as 370(Width) and 295(hight). So according to it I created a new page format in SAP coz I didnt have any page format near to it. For setting up the new page format I did these steps:
    1) Page Format
    2) Format Types
    3) Device Types.
    All these are done. also I have attached my Z smartform in the NEU output type in NACE.
    Now when I excute SF and try to print that its not getting triggering on the printer.
    I have taken printer as LP01.
    Please suggest. Where I am wrong.
    -=Soni=-

    Hi,
    You need to assign the created page format to the device type used. Which device type is defined in output device LP01? Also if it is a device type with Line Printer Driver II, you also need to add the commands in the Printer Initialization action of the page format within the device type with commands to tell the printer the length of the page.
    See the thread Re: DOT MATRIX PRINT is not coming correctly
    Regards,
    Aidan

  • Rotated Pages not Printing Properly

    Greetings All,
    I'm not sure whether this is more an Acrobat issues or Word. I'm sure each would say the other.
    Working in Word 2010 with files that have some hi res images in them. We're using the Acrobat X PDF Maker Office COM Addin as it was the only way I found to get the full resolution of the images. The books also have pages that are rotated in Word to landscape. Once PDF'd those pages are then rotated in Acrobat to be right-reading. Which all seems fine on the screen.
    When printed to a laser printer, however, the pages that were landscape in Word and rotated in Acrobat sit lower on the printed sheet than the "regular" pages which are portrait in Word and therefore NOT rotated in Acrobat, ONLY when this button at the bottom left of the Acrobat print dialog is turned ON:
    If the "Auto..." button is on it prints correctly. It's almost as if the rotation in formation within the Acrobat file is incorrect.
    This happens when printed form Acrobat versions 9, 10 and 11.
    Has any one seen this and is it something the printer may have trouble with?
    Thanks for reading,
    Ken

    I've printed the PDF on 3 different printers, all get the same result.
    An interesting note (and maybe a clue?) that I hadn't bothered mentioning is that for the previous book in this series, using the same Word 2010 template, we used Word's Save As PDF to create the PDF. It wasn't until we were making the final PDF for the printer that we realized Word wasn't exporting the art at full resolution.
    WHICH MAKES NO BLOODY SENSE AT ALL!!! (sorry for the rant - we ended up editing the PDF going to the printer and replacing the low res art Word put in with high res versions)
    THAT PDF does not have this problem. Whether it's from having been created with the SaveAs or whether it was the extensive editing in Acrobat I can't possibly say. I DID try saving the PDF from Acrobat but it didn't fix the rotated pages problem.
    Thanks for chiming in!

  • Pages not printing... only opening printer

    Hi, when I go to print a document in Pages all that happens is the printer utility opens up and then closes in a matter of seconds with no activity at the actual printer. It is as if the information just is not sending to the printer. This is the only program that is doing this and it used to work when I first bought iWork. Any suggestions would be greatly appreciated. Thanks.

    Welcome to Apple Discussions
    Since this is a new problem & only affecting Pages, it probably is a corrupt preference/.plist. Quit Pages & then go to HD > Users > [your account] > Library > Preferences & delete the file com.apple.iWork.Pages.plist, empty the Trash & restart Pages.
    Let us know if that works or not. If it doesn't, maybe one of us can think of something else.

Maybe you are looking for

  • Can I change my iCloud email address and keep all of my music, apps, files and mail in the cloud and on all of my devices?

         Ok, so here's the deal. I want to change my iCloud email address. Ultimately I want to keep the same Apple ID and simply edit the part before the '@icloud.com'. If this is not possible, can I make a new Apple ID and transfer all of music, apps,

  • V basic newbie question

    hi i had decided this weekend to start looking at the JAVA stuff I should be a real help to me at work. However i am having a problem setting things up. i have looked at the FAQ's but they don't seem to answer my question which is HOW do I set my com

  • RFFOUS_T: No records selected

    Hi, I am trying to run the DME for child support with payment method S. But I get the message that says "No records selected". Pre DME has run fine and has generated the ID feature. The results table has all the garnishment related tables and BT tabl

  • Is there a way to apply a precise value of how round the STBuffer() applies to a geography?

    Hello, I am attempting to work on moving my data into SQL Server spatial geography. I have a valid geography and am able to apply a buffer of (150 feet or 0.3048 meters) as shown below.   My question is there a way to apply a precision to how smooth

  • Returnable packaging Material Flow

    Hi, I have setup Item Cateogry Grp as ZLEI (Copy of LEIH). In the Delivery Item Cateogry determination, setup Item Cateogry ZZAL (Copy of ZTAL) for delivery type ZLF and Item Cateogry Group ZLEI. Completed the relevant settings for the determination