I have a very complex problem. i am trying to print my tax return but my hp photosmart c309a series

Trying to print my tax return but instead of printing - it brings up Set Up Fax.  I don't want the fax, never use it.  It only does this with my etax return.  I ask to print and it brings up the fax set up.  HP C309a series.  And this is what I select to print.  What the! Please help anyone?

fandrich,
This article should help resolve your blank pages:
http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01892627&cc=us&dlc=en&lc=en
Give the steps listed under your operating system a try and let us know if it helps.
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.

Similar Messages

  • I have a very strange problem - A can listen on B, but B cannot listen on A

    Hello!
    I have a very disturbing problem.
    I have done a Paint-like program that add Point-objects on the JFrame. This porgram is networked and it contains a thread class that is sending the Point and a thread class that recieves Point objects. That makes it possible to open two instances of the program and when you paint on one of the windows, the program will send the point coordinats through a DatagramPacket to the other window. So, to make this clear, this program has ONE Sending class called Client and ONE Receiving class called Server. So when you want to make a connection, then you have to open two instances of the program.
    So what is the problem?
    Suppose that I have opened two instances of the program. Instance A is sending packets to port 2001 and is listening for packets on port 2000. Instance B is sending packets to port 2000 and is listening for packets on port 2001.
    When I draw a point on Instance A's window, the Instance B is receiving the point and draws the point on its window.
    When I draw a point on Instance B's window, the Instance A is NOT receiving the point. Instance B is listening on itself. That is the problem. Why is instance B listening for packets from itself and why doesn´t A get B's packets when B gets A's packets?
    Here is the send och receive classes (called Client and Server):
    class Client extends Thread
                Point p;
                Client(Point p)          
                     this.p = p;
                public void run()
                     System.out.println("Sending");
                     try
                          InetAddress toHost = InetAddress.getLocalHost();                     
                          int port = 2000;                    
                          DatagramSocket sock = new DatagramSocket();                                                   
                          String message = Integer.toString(p.x) + " " + Integer.toString(p.y);                         
                          byte[] data = message.getBytes();                    
                          DatagramPacket p = new DatagramPacket(data, data.length, toHost, port);     
                          sock.send(p);                                                                                
                     catch(SocketException se){}
                     catch(IOException ioe){}
                     catch(ConcurrentModificationException cme){}
    class Server extends Thread               
                String message;
                String[] xy;
                public void run()
                     System.out.println("Receiving");
                     try
                          byte[] data = new byte[8192];
                          DatagramPacket packet = new DatagramPacket(data, data.length);
                          DatagramSocket sock = new DatagramSocket(2001);
                          while(true)     
                               sock.receive(packet);                                                                                            
                               message = new String(packet.getData(), 0, packet.getLength());                                          
                               xy = message.split(" ");                                                                 
                               Point p = new Point(Integer.parseInt(xy[0]), Integer.parseInt(xy[1]));          
                               addPoint(p);                                                                                               
                     catch(SocketException se){}
                     catch(IOException ioe){}
                     catch(ConcurrentModificationException cme){}
      }I have tried to solve this for hours but I have not found any solution.
    Please, help!

    Here is an executable example.
    1. To run the first instance: Compile the code and run the application and note that it is listening on port 2000 and sending through port 2001
    2. To run the second instance: Change the ServerSocket to listen on port 2001 and the DatagramSocket to send through port 2000 and compile and run the application.
    3. Tell me this: Why does the first instance listen from DatagramPackets from itself and not from the other running instance while the other running instance is listening for DatagramPackets sent from the first instance? The one who can give me the answer will be the man of the month.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    import java.lang.Thread;
    import java.net.*;
    import java.net.DatagramPacket;
    import java.io.*;
    public class Paint extends JFrame
         private Board b = new Board();
         public static void main(String[] args)
              new Paint();
           public Paint()
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              getContentPane().add(b, BorderLayout.CENTER);
              addKeyListener(new ChangeSizeListener());
              setSize(300, 300);
              setVisible(true);
              setFocusable(true);
           class ChangeSizeListener extends KeyAdapter
              Board b = new Board();
              public void keyPressed(KeyEvent e)
                   if(KeyEvent.getKeyText(e.getKeyCode()).equalsIgnoreCase("s"))
                        try
                               int size = Integer.parseInt(JOptionPane.showInputDialog(null, "New size:", "Size", 3));
                               b.setSize(size);
                        }catch(NumberFormatException nfe){}
    class Board extends JPanel
         Point p;
           private HashSet hs = new HashSet();
           int size_x;
           int size_y;
              public Board()
                   size_x = 20;
                   size_y = 20;
                   setFocusable(true);
                   setBackground(Color.white);
                   addMouseListener(new L1());
                   addMouseMotionListener(new L2());
                   Server s = new Server();
                   s.start();
              public void paintComponent(Graphics g)
                   super.paintComponent(g);
                   g.setColor(Color.black);
                   Iterator i = hs.iterator();
                   while(i.hasNext())
                     p = (Point)i.next();
                     g.fillOval(p.x, p.y, size_x, size_y);
             private void addPoint(Point p)
                   hs.add(p);
                   repaint();
             public void setSize(int size)
                    this.size_x = size;
                    this.size_y = size;
                    repaint();
           class L1 extends MouseAdapter
                public void mousePressed(MouseEvent me)
                    Client c = new Client(me.getPoint());
                     addPoint(me.getPoint());
                      c.start();
           class L2 extends MouseMotionAdapter
                public void mouseDragged(MouseEvent me)
                     Client c = new Client(me.getPoint());
                      addPoint(me.getPoint());
                      c.start();
           class Client extends Thread
                Point p;
                Client(Point p)
                     this.p = p;
                public void run()
                     System.out.println("Sending");
                     try
                          InetAddress toHost = InetAddress.getLocalHost();
                          int port = 2000;                 // After running a first instance of the application, change the port to listen on 2001
                          DatagramSocket sock = new DatagramSocket();
                          String message = Integer.toString(p.x) + " " + Integer.toString(p.y);
                          byte[] data = message.getBytes();
                          DatagramPacket p = new DatagramPacket(data, data.length, toHost, port);
                          sock.send(p);
                     catch(SocketException se){}
                     catch(IOException ioe){}
                     catch(ConcurrentModificationException cme){}
           class Server extends Thread
                String message;
                String[] xy;
                public void run()
                     System.out.println("Receiving");
                     try
                          byte[] data = new byte[8192];
                          DatagramPacket packet = new DatagramPacket(data, data.length);
                          DatagramSocket sock = new DatagramSocket(2001);              // After running a first instance of the application, change the DatagramSocket to listen on port 2000
                          while(true)
                             sock.receive(packet);
                             message = new String(packet.getData(), 0, packet.getLength());
                             xy = message.split(" ");
                             Point p = new Point(Integer.parseInt(xy[0]), Integer.parseInt(xy[1]));
                             addPoint(p);
                     catch(SocketException se){}
                     catch(IOException ioe){}
                     catch(ConcurrentModificationException cme){}
    }

  • Hi,i have a very big problem....i had an accident with my macbook , i poured some champagne and it does not start anymore....it will work again???

    hi,i have a very big problem....i had an accident with my macbook , i poured some champagne and it does not start anymore....it will work again???

    If you spilled champagne on it, chances are not good.  If you haven't alredy DO NOT turn it on or charge it.  I would immediately take it to the Genius Bar and see if they can clean it up before. 
    Had the same problem with a 15" MBP and a tea spill and I did the opposite.  Trashed the Logic & Keyboard Assembly.  Cost to repair was going to be more than what I paid for a computer so ended up having to replace it.

  • I tell her that I'm developing a flash content with as2 and I have a very simple problem, I hope you

    Hello, how are you?
    I tell her that I'm developing a flash content with as2 and I have a very simple problem, I hope you can help me
    I happened to create a movie clip and inside to create a scroll that is two isntancias,
    I mean:
    in the first frame create a button in the 6 to 5 buttons and an action to melleve the sixth frame and another to return. (Elemental truth)
    Now I have a problem. In creating a movie clip instance name to each button and in the average place the next fram as2,
    boton.onRollOver name = function () {
           gotoAndStop ("Scene 1", "eqtiqueta");
    because what I want is that from inside the movie clip, go to the scene proncipal to a frame that is three in the label name.
    however, does not work.
    appreciate your cooperation.
    Escuchar
    Leer fonéticamente
    Diccionario - Ver diccionario detallado

    Hello, I think you need to start a discussion on the Action Script forum. This is the Flash Player forum, the browser plugin.
    Thanks,
    eidnolb

  • I have a very similar problem (5506) in that I changed my appleID loginid and now none of my home shares work. All itunes have been re-authorized/authenticated with the new appleID string. Yet I still receive this error. I too am looking for suggestions.

    I have a very similar problem in that I changed my appleID loginid and now none of my home shares work (5506) . All itunes have been re-authorized/authenticated with the new appleID string. Yet I still receive this error. I too am looking for suggestions.

    If you no longer have the computer(s) you want to deauthorise,
    Log in to iTunes,  go to "view your account info" on the itunes store,  deauthorise all five, (Please Note: this can only be done Once every 12 months)  and then re-authorize your current Computer(s) one at a time.
    Authorise / Deauthorise About
    http://support.apple.com/kb/HT1420

  • I have a very big problem with my mac book pro. It continously looses the wifire connection. This happens every 5-10 minutes and is getting to be a very big irritation. I have tested my wifiresignal

    I have a very irritating problem with my MacBook Pro. It keeps loosing the wifi connection - every 5-1o minutes!!!
    I have testet the wifi signal and had my router checked - both are fine.
    Please tell me what I can do :-(
    John

    First you should check on another Wifi to see if it's your Lion machine.
    If it only occurs on your Wifi, then perhaps you have local interference and need to set the router on another channel far from others.
    You can install a free program called KisMAC that you set your Driver Preferences to Apple Airport Extreme Passive Mode, enter your Admin password and monitor your local Wifi signals, see if you cna pin point the cause of your interference or meddler.
    If your not running WPA2 with AES and a 12 plus random character/letter/number password for both Admin and Internet access use only then you should seriously consider doing so.
    http://www.tomshardware.com/reviews/wireless-security-hack,2981-10.html

  • I have a £50 gift voucher and I tried to buy something with it, but it tells me there was a billing problem with a previous purchase and makes me put in my debit card details. My debit card has no money atm, can't I just pay with my voucher?

    I have a £50 gift voucher and I tried to buy something with it, but it tells me there was a billing problem with a previous purchase and makes me put in my debit card details. My debit card has no money atm, can't I just pay with my voucher for the things that have a billing problem? I tried to put my voucher code in again but it won't let me do that.

    If the amount of the purchase is close to $21.07, then you need to take into account taxes may be added.
    If you go beyond the credit from a gift card the balance will be billed to your credit card account.

  • I have just been having problems with my Canon MP250 printer and decided to uninstall and re-install the printer and everytime I try to re-install the printer trough preferences and all I keep getting was a message saying "preparing to queue"......

    I have just been having problems with my Canon MP250 printer and decided to uninstall and re-install the printer and everytime I try to re-install the printer trough preferences and all I keep getting was a message saying "preparing to queue"...... I then decided to try and reload the Canon printer drivers and for some silly reason I deleted the existing Canon printer drive. Now I cannot load them from the CD provided with the printer or from downloads through the Apple store. If anyone out there could help me I would be greatly appreciated......

    These Canon printer/scanner drivers from Apple - http://support.apple.com/kb/DL899 - should work. The MP250 is listed on the support page. Try downloading and installing them.
    Good luck,
    Clinton

  • I have purchased my i phone 5 one month back, unfortunately I have got some hardware problem like some part has been broken from inside, but the phone works without any issue, Did anybody face this issue?

    I have purchased my i phone 5 one month back, unfortunately I have got some hardware problem like some part has been broken from inside, but the phone works without any issue, Did anybody face this issue?

    If you believe there is a hardware problem, call AppleCare or make an appointment at an Apple Store if there is one nearby.

  • I have a new computer with Windows 7 professional, Office 2007, Adobe XI. I have just created a word document and tried save it as a PDF but the PDF option doesn't appear in the drop down menu. Any ideas please? Thank you.

    I have a new computer with Windows 7 professional, Office 2007, Adobe XI. I have just created a word document and tried save it as a PDF but the PDF option doesn't appear in the drop down menu. Any ideas please? Thank you.

    What is "Adobe XI" - Reader, or Acrobat?
    But either way, 'Save as Adobe PDF' is a Word function, independent of what Adobe software you have installed.

  • I have adobe photoshop CS6 and I am trying to use the analysis tools but all of them except for the ruler tool are unavailable. Am I missing certain plug ins?

    I have adobe photoshop CS6 and I am trying to use the analysis tools but all of them except for the ruler tool are unavailable. Am I missing certain plug ins?

    Which operating system?
    If I recall, some features were not fully supported on XP.
    Nancy O.

  • HT1766 I have restored my i phone 4 and trying to restore from the back, but it is asking for the password, but when I entered the Itunes password it is not accepting it, how can I restore the password?

    I have restored my i phone 4 and trying to restore from the back, but it is asking for the password, but when I entered the Itunes password it is not accepting it, how can I restore the password?

    Hello hskod,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    iOS: Troubleshooting encrypted backups
    http://support.apple.com/kb/TS5162
    You can keep trying to restore the device from backup until you remember the password. If you're having trouble, try:
    Leaving the password field blank
    Your Apple ID password
    Your computer account password, if you have one
    Email passwords you may have used
    Your Wi-Fi network password
    Website passwords you may have used
    A password for hard-disk encryption software, if you use it
    Have a nice day,
    Mario

  • My ipod touch wont play any music, when i try to play a song, it just keeps pausing. no sound comes out of the headphones or internal speakers. what can i do to fix this problem? ive tried charging it and resetting it but nothing works.

    my ipod touch wont play any music, when i try to play a song, it just keeps pausing. no sound comes out of the headphones or internal speakers. what can i do to fix this problem? ive tried charging it and resetting it but nothing works.

    my ipod touch has the same problem. I restored it three times, but that can't help.

  • HT1420 Just have a new iPad retina display. Trying to authorise it for iTunes but have no pull down menus when I oppen iTunes.  ???

    Just have a new iPad retina display. Trying to authorise it for iTunes but have no pull down menus when I oppen iTunes.  ???

    If you have iTunes 11 on a Windows system, press Control-B to show the menus.
    Regards.

  • I have a very bad problem with java I try many solution but all the solution failed

    Hello friends,
    My system  10.8.3 Macbook pro
    I try many solution in the 
    Hello friends,
    My system  10.8.3 Macbook Pro, I use Safari 6.0.3
    Java is not working.
    I try many solution in the  internet but nothing work with me , And I feel very sad
    One of the famous solution I try in this link: http://support.apple.com/kb/HT5559
      I download Java OS x 2013-002 and Java 7.17
    after that i do what is written here : http://support.apple.com/kb/HT5559 Also failed.
    Sometime I think to sell my new Macbook Pro because of this problem
    I hope that any one can help me ?
    Thank you
    Soso

    I check what java I have by this way: https://service.parachat.com/knowledgebase/211/How-do-I-check-which-Java-version -is-installed-on-my-Mac.html
    java version "1.6.0_43"
    Java(TM) SE Runtime Environment (build 1.6.0_43-b01-447-11M4203)
    Java HotSpot(TM) 64-Bit Server VM (build 20.14-b01-447, mixed mode)
    sos-macbook-pro:~ so$

Maybe you are looking for

  • Two 1GB memory modules don't work on MS-7173 board

    Hi, I have an old MS-7173 (RC410M) board, with 1 memory stick of model: Kingston KVR667D2N5/1GB, 1.8v. I bought another memory stick with the exact model. I tried them both, but I get a computer restart once windows starts booting. Each of them works

  • Is it possible to assign a default value to an out parameter??

    Is it possible to assign a default value to an out parameter?? Thanks in advance.

  • Load Balancing in PI

    Hi Experts, Can any body explain how to do load balancing in PI7.0 What are the parameters needs to change related to Runtime WorkBench when doing load balancing. Please provide if  any one having material related to this. Adavance Thanks Rohit

  • Hit counter on JSP page

    Hello java-ites, I want to create a counter on jsp page. How do I do it? Any help is appreciated. Many thanks. -Arun Chellapa.

  • Older  USB Cable vs. new

    So my ipod touch won't charge or sync if I use the old USB cable from previously bought iPods or chargers. Is this a problem with my iPod or are the new iPods not compatible with the older USB cables and chargers?