Lost printer connection when upgraded Finality connection

Upgraded Xfinity Internet connection.  I have wireless printer (HP deskjet  3051A) and lap top Toshiba - and use windows 7.  With the upgrad I received a new netwrok name and password for my wireless connection.  There is no isses accessing the internet etc, but when I upgraded I lost the printer connection on my lap top.  Xfinity said they couldn't help.  It appears like something needs to be reconfigured but I have not been able to do that.  Any easy solution to fix this problem?

Hi,
From the cotrol panel select Devices and Printers, right click and remove any listed HP Deskjet 3050 printer by selecting Remove Device.
From the Start menu go to Programs > HP > HP Deskjet 3050 and click the printer icon to launch its software.
Select Conenct a new printer by selecting wireless connection, follow the steps on screen to configure the printer for your new router.
Note: the installation might require a temporary USB connection in order to configure the printer for your new network.
Regards,
Shlomi
Say thanks by clicking the Kudos thumb up in the post.
If my post resolve your problem please mark it as an Accepted Solution

Similar Messages

  • When i finally connected my mac to work network on windows environment everything related to apple including App store, Safari, software updates, iCloud and iTunes do not work using a proxy server and everything else is working very well

    when i finally connected my mac to work network on windows environment everything related to apple including App store, Safari, software updates, iCloud and iTunes do not work using a proxy server and everything else is working very well including chrome browser…i tried everything but no clue...anybody have solution for this..???

    I also forgot to note that this problem also persists with the new iBooks application. I cannot get past the 'Get Started' screen or access the iBooks Store. Again, all top bar menus are unresponsive.
    DT

  • I have my wifi in my home with secure connection when i get connected to it ,it asks me the password and when i entered it, it shows that unable to join the network why is this happening...........

    i have my wifi in my home with secure connection when i get connected to it ,it asks me the password and when i entered it, it shows that unable to join the network why is this happening...........

    You are right, but how could i send it to Apple? when the phone company first replaced my iphone they had in stock alots of iphones and they just sent mine back to Apple and gave me a new one, so all i did is to give them my phone, but now how could i sent it to Apple? and i cant send it by myself, and the store wont do that, its a lost for them.. so sending it to Apple wasnt an option from the begining.
    and for the record, i dont think the store where i bought it is an authorized shop.. its just a store who boughts phone's from Apple in a low price and sells it in much more money..

  • Null connection when trying to connect to SQL Server 2000 in Tomcat4.1.29

    Hi All,
    I am still struggling with null connection when trying to connect to sql server 2000 with tomcat using sun.jdbc.odbc.JdbcOdbcDriver
    Here is my server.xml
    <Server port="8005" shutdown="SHUTDOWN" debug="0">
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"
    debug="0"/>
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"
    debug="0"/>
    <GlobalNamingResources>
    <Resource name="UserDatabase" auth="Container"
    type="org.apache.catalina.UserDatabase"
    description="User database that can be updated and saved">
    </Resource>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <Resource auth="Container" description="Users and Groups
    Database" name="UserDatabase"
    scope="Shareable"
    type="org.apache.catalina.UserDatabase"/>
    <Resource name="jdbc/DefaultDS" scope="Shareable"
    type="javax.sql.DataSource"/>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.
    MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <ResourceParams name="jdbc/DefaultDS">
    <parameter>
    <name>validationQuery</name>
    <value></value>
    </parameter>
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>4</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:odbc:JBoss-SQL://localhost:1433;databaseName=Development;selectMethod=cursor;</value>
    </parameter>
    <parameter>
    <name>driverClassName</name>
    <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>2</value>
    </parameter>
    </ResourceParams>
    </GlobalNamingResources>
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Tomcat-Standalone">
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8080" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="100" debug="0" connectionTimeout="20000"
    useURIValidationHack="false" disableUploadTimeout="true" />
    <!-- Note : To disable connection timeouts, set connectionTimeout value
    to -1 -->
    <!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
    <!--
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8443" minProcessors="5" maxProcessors="75"
    enableLookups="true"
    acceptCount="100" debug="0" scheme="https" secure="true"
    useURIValidationHack="false" disableUploadTimeout="true">
    <Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
    clientAuth="false" protocol="TLS" />
    </Connector>
    -->
    <!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8009" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" connectionTimeout="0"
    useURIValidationHack="false"
    protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
    <!-- Define an AJP 1.3 Connector on port 8009 --><Logger className="org.apache.catalina.logger.FileLogger"
    prefix="catalina_log." suffix=".txt"
    timestamp="true"/>
    <!-- Define the default virtual host -->
    <Host name="localhost" debug="0" appBase="webapps"
    unpackWARs="true" autoDeploy="true">
    <Logger className="org.apache.catalina.logger.FileLogger"
    directory="logs" prefix="localhost_log." suffix=".txt"
    timestamp="true"/>
    <Environment name="maxExemptions" type="java.lang.Integer"
    value="15"/>
    <Parameter name="context.param.name" value="context.param.value"
    override="false"/>
    <Resource name="jdbc/DefaultDS" auth="container" type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/DefaultDS">
    <!-- Maximum number of dB connections in pool.
    Set to 0 for no limit.
    -->
    <parameter>
    <name>maxActive</name>
    <value>8</value>
    </parameter>
    <!-- Maximum number of idle dB connections to retain in pool.
    Set to 0 for no limit.
    -->
    <parameter>
    <name>maxIdle</name>
    <value>4</value>
    </parameter>
    <!-- Maximum time to wait for a dB connection to become available
    in ms, in this example 10 seconds. An Exception is thrown if
    this timeout is exceeded. Set to -1 to wait indefinitely.
    -->
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <!-- MS Sql Server dB username and password for dB connections
    -->
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>sa</value>
    </parameter>
    <!-- Class name for MS Sql Server JDBC driver
    -->
    <parameter>
    <name>driverClassName</name>
    <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    <!-- The JDBC connection url for connecting to MS Sql Server dB.
    -->
    <parameter>
    <name>url</name>
    <value>jdbc:odbc:JBoss-SQL://localhost:1433;databaseName=Development;selectMethod=cursor;</value>
    </parameter>
    <!-- This Databae Connection Pool Description.
    -->
    <parameter>
    <name>description</name>
    <value>JDBC Driver: sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    </ResourceParams>
    <Resource name="mail/Session" auth="Container"
    type="javax.mail.Session"/>
    <ResourceParams name="mail/Session">
    <parameter>
    <name>mail.smtp.host</name>
    <value>localhost</value>
    </parameter>
    </ResourceParams>
    <ResourceLink name="linkToGlobalResource"
    global="simpleValue"
    type="java.lang.Integer"/>
    </Host>
    </Engine>
    </Service>
    </Server>
    and my web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <!-- Standard Action Servlet Mapping -->
    <web-app>
    <resource-ref>
    <res-ref-name>jdbc/DefaultDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    and JBoss-SQL is data source I created from control panel settings and here is way I am retrieving connetion
    InitialContext initCtx = new InitialContext();
    DataSource ds = (DataSource) initCtx.lookup("java:comp/env/jdbc/DefaultDS");
    Connection con = ds.getConnection();
    return con;
    I tried connecting as mentioned in this website
    http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples-howto.html#Common%20Problems.But didn't help
    Please help urgent
    Sorry for long file. Can any one please help me in solving this problem.
    Thanks in advnace
    Kurakula

    I'd recommend that you not use the JDBC-ODBC bridge driver to connect to SQL Server. M$ and jTDS are two free type IV JDBC drivers that you should use instead. Put those JARs in the WEB-INF/lib directory.
    The database URL you're using is not correct if you change drivers. Consult the docs to find out what the proper syntax is.
    MOD

  • I need to be able to access a PDF document on my ipad when I am offline and save it to print later when I am connected to wi-fi. I can not figure out how to do this (to be accessible offline and saved). Please help.

    I type notes between therapy sessions and frequently do this in my car without wifi available.  I need a way to access PDF files that I can type in and save and be able to AirPrint from when I am connected to wifi at a later time,  I currently have these documents saved in Dropbox and open them on my ipad or iPhone in Adobe Reader but don't have a way to save and use offline. I tried iBooks but it doesn't allow me to edit.  I need specifics on how to do this please. I bought an ipad to make my mobile work easier but am still using my iPhone for everything because I can't figure how to easily access and edit PDF documents offline. Thanks in advance.

    search the app store for PDF Writer. I've found a lot that will convert documents to PDF, but none yet that will write within the PDF. One thing you want to avoid are cloud based apps. Any of them that talk about editing on the cloud, etc, aren't going to be as standalone as you want.
    It's possible, if you can take your template PDF, turn it into a word document that you can edit, you can then convert that to PDF...kinda a workaround way to do what you want. And apps that convert to PDF are much easier to find

  • MacBook loses wireless connection when iPod touch connects to network

    hi
    ever since upgrading to 10.5.5. on my MacBook i've had the "intermittent network connection" problems that have been described and discussed (without any real solution from what i can see) in another thread.
    PROBLEM: every couple of minutes my MacBook loses connectivity to the network - the AirPort icon still says that i'm connected, albeit with one less bar than before, but i can't connect to anywhere, not even to the wireless router - and to re-establish a connection i need to switch off AirPort, switch it back on, it will then reconnect, and after two minutes or so i have to do it all over again because the network connection drops again.
    NOVEL OBSERVATION 1: reinstalling the 10.5.5. combo system updater helped somewhat. i used to get an error in system.log about there being too many state transitions on the wireless network and about network traffic reduction measures being taken to overcome this problem, but after reinstalling the 10.5.5. combo system updater this message never appears in the logs and I get kicked off only sometimes (see what i say in point 2 below)
    NOVEL OBSERVATION 2: now my MacBook will only lose its connection to the net if i switch on my iPod Touch and switch its wireless interface on. in fact, the only way to avoid the MacBook getting constantly disconnected is to make sure that the wireless interface on the Touch is switched off in the Touch's system preferences; if I just sleep the Touch (top button) without switching off its wireless network interface first in its System Preferences, then the MacBook will keep disconnecting even while the Touch is in sleep mode (presumably the Touch keeps polling the network or something, even while it's in sleep mode).
    DIAGNOSTIC NOTE 1: I have another wireless device (my Nokia E51, which has wifi capabilities) and if I connect it to the wireless interface then the MacBook's connection isn't dropped - i.e. the MacBook only loses its wireless connection when my iPod Touch connects to the wireless network.
    DIAGNOSTIC NOTE 2: I have upgraded my wireless router (before I had a Linksys WRT-54GC, now I have a Netgear WGR614v9) but that has made no difference.
    DIAGNOSTIC NOTE 3: I have also tried altering the router's settings (i have played around a_lot with this, trying every combination I could think of - e.g. staple down particular devices to particular ip addresses, use only 802.11g versus automatic b/g, etc) but that has made no difference either.
    RANT:
    The only thing that prevents these disconnections from occurring is to keep the iPod Touch's wireless switched off, which ***** because if I'm in the kitchen I can't have it switched on to monitor my email (yes, I've no life, i hang around waiting for emails), or if I go have a lie down and want to check out stuff on the net, or to browse the iTunes music store or whatever, then I know that my connecting my iPod Touch the computer will be disconnected.
    This obviously *****, right? And a lot of people are having wireless problems with their MacBooks, right? And these problems seem to have been around for over a year, right?
    So why hasn't Apple solved this problem yet? Or am I just being melodramatic?
    Your thoughts on any or all of the above, or flames if that's your preferred method of communicating, are invited. =)
    Cheers
    dr.colekat

    Having the same problem here. As a first time mac user, Apple has certainly made a bad first impression.
    For me, the issue seems to occur when transferring files between computers that are connected to the same access point (when transferring files from wired computers on the network there is no issue). My vista laptop and every laptop I have tried has worked perfectly fine with this access point so I am 100% convinced it is the mac. Basically when I copy the files, after about 100mb, I am unable to access anything on the local network or internet until I restart Airport. The weird thing is that even though I am unable to access anything, the airport utility says it is connected. I might also note that the wireless signal strength is full.
    If I can't get this figured out in a few days, this computer is going back to the store where it came from and I will officially label myself anti-mac. This type of issue is just unacceptable for something so main stream.

  • WRT110 loses connection when second laptop connects

    One laptop can be connected to the router at a time and have absolutely no problems. The problems occur when one laptop is already connected to the router and another one tries to connect to the router as well. When this happens the router completely loses it's connection to the internet. The only way I have found to fix this is to unplug and restart the router, which I shouldn't have to do every single time we want to use the internet. Sometimes it takes restarting it a couple times for it to work. Does anyone have any idea why this happens or what I can do to fix it?
    Solved!
    Go to Solution.

    I had this issue for a long long time. The one thing that I have found to help combat this issue is to make sure that if you are using Vista that IPv6 is off. For some reason when either my roommates desktop, laptop or my laptop has this one it will crash the network. To do this in Vista
    1. Click in Control Panel
    2. Click View Network status and tasks or Network Connections if you are in classic view
    3. Click Manage Network Connections
    4. Right click on your Wireless or Hardwire connection however you are connecting to the router and go to Properties
    5. Uncheck Internet Protocol Version 6.
    6. Hit ok.
    7. Reconnect the device to the network.
    Initally it may crash the network. Allow the network 5 minutes to attempt to come back up on its own. If this does not work then go ahead and unplug and replug in the router. After the first crash for me it did not happen again.
    Hopefully this will help with some of your problems. This is the only thing that I could find to combat the issues that you are describing. With this off we are able to run my laptop, his laptop, his desktop, an xbox360, and a blue-ray player on the network no problem. Good luck and if you have any questions please ask!
    Message Edited by bigguy_132 on 01-30-2009 11:09 AM

  • Loss of laptop wireless connection when wired desktop connects

    I haven't had this problem when i first bought the router but recently if my desktop is connected by a wired connection I am either unable to connect wirelessly via laptop, or if I am already connected, will be disconnected. Can anyone help please??? Thank you

    Are you using any fixed LAN IP addresses on your network?  If so, list all the fixed LAN IP addresses that you use.  Also, if you are not using the default DHCP server range of 192.168.1.100  thru  192.168.1.149 , then please state your DHCP server range.

  • IPhotos has lost my Photos when upgrading to Yosemite

    When I upgraded to Yosemite like many people I have seen on forums there was a issue with upgrading the iPhoto library when upgrading to 9.6.  Finally it looked like it had worked but now all of my photos do not appear in iPhoto.  The files seem to be there still as the iPhoto library file is still1.26TB in size (i have a lot of photos).  I have tried doing a full rebuild of the Library but it did nothing.  I also purchased iPhoto Library Manager but this does not help either.  Please can anyone help?
    I am using iPhoto 9.6, OSX 10.10 (Yosemite) on a iMac (27-inch, Late 2013).  The Library is stored on a "My Book Thunderbolt Duo", 8TB in raid 1 configuration.

    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.

  • Lost bootcamp capability when upgrading from OS X Mavericks to OS X Yosemite 10.10?

    When upgrading from OS X Mavericks to OS X Yosemite 10.10 while dual booting with Windows 7 on my bootcamp partition, I can't access the Windows partition any more. When I restart my computer and hold the alt key the only drives that are shown are my Mac OS X and Recovery (usually there is the bootcamp drive there too). Does anyone have any solutions? I can still access my windows 7 files from within my Mac partition weirdly enough. And if there aren't any solutions, is bootcamp broken on Yosemite? Is it safe to redo the process and put a fresh Windows 7 or Windows 8 partition back on bootcamp again? I'm not tech savvy enough to understand all of the coding components so if you want to walk me through it you can, or just provide a simple explanation, any help is grateful. Thanks for your help.

    Welcome To Discussions Dedesu!
    Here is some additional info.
    Tiger is available for purchase at The Apple Store (U.S.).
    If you know what to look for, a Full Retail Version, of the Panther Install CDs, or a Full Retail Version, of the Tiger Install DVD, can also be purchased rather inexpensively, at some additional online Apple retailers, like Amazon, FastMac, etc, and as posted, eBay.
    As also posted, be sure not to purchase grey, upgrade or machine specific CDs or DVDs. They will not work.
    Panther is only on CDs, not DVDs.
    Unless purchased from AppleRescue, the discs should look exactly like the images in the above links, and not say Upgrade, CPU Drop-in DVD, or "This software is part of a hardware bundle purchase - not to be sold seperately." on them.
    Additional info here Using OS X Install CDs/DVDs On Multiple Macs.
    Once Panther 10.3.x is installed, you can use the 10.3.9 Combo Update, to upgrade to the final version.
    If your Mac meets the Tiger System Requirements, you could also consider installing that, and then use the PPC 10.4.9 Combo Update, to upgrade to the current version.
    Panther Install & Upgrade Hints
    Additionally, "Tiger ships on a DVD, but if your Mac doesn’t have a built-in DVD-ROM player, you’ll need CD media."
    AppleRescue, also sells a Tiger installation set on CD.
    Shop Carefully, Examine All Documentation, And I Wish You Success!
    ali b

  • Losing broadband connection when Ipod nano connected

    Whenever I connect my ipod to my computer, my broadband connection dips out. I am currently using Windows XP. Any suggestions as to why this is happening and any solutions to this would be appreciated. Thanks

    How are you connected to your Internet connection - USB, Ethernet, or wireless?
    I've noticed that some PCs tend to "reset" the connection to ALL USB devices whenever certain devices, such as iPods, are connected. If you have a USB broadband modem, it could be related to this sort of thing. I'm not really sure if this is an iPod issue at all, but you could try unplugging/replugging your USB modem, or you could try different USB ports on your computer to see if some are on a separate bus.

  • Lost wireless connection when upgrading to 10.6.8

    Friend upgraded to 10.6.8 and has lost the ability to establish wireless connecttion again after re-start.  I was able to re-estable Airport connection to the router, but it will not go to the final internet connection process.  I ran Assistant and it goes all the way through till it needs to connect to the internet and a message comes up to restart router.  I do this but noting happens.  Gets stuckrepeating the restart router message.  Any suggestions?
    I had the same proble when I upgraded last weekend, I use an Airport Express, and it took me several trys to finally get internet back and finally the last patch to get the wireless printer to work.
    Gawebster

    You may want to have a look at this posting. Many owners of Xerox printers, mostly with Fiery print controllers, are having the same error with the lpd backend. The easiest solution for many was to retrieve the 10.6.7 version of the lpd backend from their time machine backup and replace the new 10.6.8 version. If you don't have a time machine backup (crazy practice when the app is built in) then a kind user has posted the file for others.

  • Lost my HP deskjet 3512 printer function when upgrading to Windows 8.1 - can't get it back!

    I lost my wireless connection from my Hp A6 Vision lapptop to my HP 3512 deskjet printer when I upgraded to Windows 8.1.  I'm told it is installed but it is not responding.  I'v tried following instructions and even using the Hp wizard to get it up and running.  Is it even compatible with 8.1?  What do I need to do? 

    Hi @periwinklejoy,
    Welcome to the HP Forums!
    I understand that you lost your wireless connection to your HP Deskjet 3512 after upgrading to Windows 8.1. I am happy to help!
    The printer is definitely compatible with Windows 8.1. As there are drivers available at this website, HP Deskjet 3510 e-All-in-One Printer Full Feature Software and Drivers.
    I would recommend the following:
    Uninstall the software. Uninstalling the Printer Software. (In case there are old drivers still installed, if not then carry on to the next step).
    Clean boot the computer. How to perform a clean boot in Windows.
    Re-install using the HP Printer Install Wizard for Windows.
    Then follow this guide, Installing the Printer Software for a Wireless Network Connection.
    Hope this helps you, and thank you for posting!
    RnRMusicMan
    I work on behalf of HP
    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" to say “Thanks” for helping!

  • How do I switch between number and alphabet on printer keypad when trying to connect new router.

    HP wireless printer 6500 e709n
    Have a new router.  Using the printer tools, and network setup, printer can find router but when I input the password using the keypad, alpha characters appears and therefore rejected.   Password is numeric.  The password cannot be changed because it is provided by ISP and is unchangeable, as far as I know.
    I've checked the user manual and there is no mention of how to change between using the 6500 e709n keypad in alpha and numeric mode.

    Hi hessvette,
    When the keyboard appears on the printer display, there should be a ARROW pointing up or a TRIANGLE. Press that, and the entire keyboard changes into CAPS. To enter lower case you need to tap the appropriate letter key twice quickly. The first tap should show a capital and the second should show a lower case letter.
    If it is an older type printer with a keypad then you would have to cycle through the letters and numbers. Lets say you want to enter the number '2'. Keep pressing the number 2 button. It will cycle through all the options for that button, ie A,B,C,a,b,c and the 2. You do the same for the other buttons.
    I am sending a link for Installing the Printer on a Wireless Network.
    Let me know if this helped.
    Thank you,
    I worked on behalf of HP.

  • HP Offiejet Pro 8000 A809 prints carbage when using network connection on Windows Server 2008

    We are using HP Offiejet Pro 8000 A809 on our network, and they are installed on a Windows 2008 Server.
    But when we are sending a print command it prints only garbage. We've tried different print drivers but without success.
    Anyone experience the same problem and have a solution?
    Thanks

    temporary solution from HP is to use the standard HP Deskjet 990c driver.
    it works but i hope they make a proper driver.

Maybe you are looking for

  • Error on deployment (plz help me to solve this very urgent.....)

    Result => deployment aborted : file:/C:/DOCUME1/E371011/LOCALS~1/Temp/temp20811ApplicationTest.ear Aborted: development component 'ApplicationTest'/'local'/'LOKAL'/'0.2007.06.22.16.36.17':Caught exception while checking the login credentials for SAP

  • Problem in connecting to Access Database.

    Hi,      I am new to this Java/JSP Concepts. I am using IBM Websphere Studio(Application Developer 5.1.2). I am facing a problem to connect to the Access database. I have written a java file to connect to the Access Database. When i compile my java c

  • Purchase price in PO

    How the system picks Price ? What has given highest priority by system  or sequence Info record Condition record in MeK1 Last PO Quotation Scheduling Agreement PR Please guide Edited by: Bhushan Bivalkar on Oct 27, 2009 10:56 AM

  • Adobe LiveCycle Form Not Saving Data

    I have designed dozens of Adobe LiveCycle forms and have extended rights (enable usage rights in adobe reader).  My problem is that sometimes the form is not saving the data for end users.  One of my end users even updated Adobe Reader, but still not

  • Changing the Title Icon of JDialog

    Hello All, Is there any way to change the coffer cup icon which appears in the top of a JDialog? In JFrame,we can use setIconImage().But that doesn't work here. Could anyone give me a solution for my problem.? Thanks in Advance, Regards, Vijayakannan