Hp d110a prints blurry from any iOS device, but not from any other kind of device.

My D110a prints blurry...almost like a shadow...when printing via AirPrint on any iOS device, but if I print from other devices, or just print a report, it prints correctly. I have attempted to search on the device's control panel (both on the device and web-based) to see if there is a print setting, and I will also check my router.
Does anyone know why this would be happening? I have access to another HP ePrint All-In-One at my job, and my iPad prints fine to that printer.
Thanks much,
Chris

Hello Choirguy,
Welcome to the HP Support Forums! I understand when printing from Apple Devices with the AirPrint driver it prints blurry. We know it is not the HP Photosmart D110a, as you can print reports from the front panel with no problem and all other Operating systems are fine and print correctly. Please let me know the following:
1. Is the D110a connected directly to a wall outlet, without power strips or surge protectors connected?
2. What other devices are you able to successfully print from, and how are they connected USB or Wireless>
3. Do you have any software installed on the devices that are able to print from?
I will watch for your reply, so we can continue.
Thanks,
HevnLgh
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 the left of the reply button to say “Thanks” for helping!

Similar Messages

  • I can print from my iPad 3 but not from my new iPad mini which has a lower spec. What should I do?

    Question. Why can I print from my iPad 3 but not from my new iPad mini which has a lower spec?

    The "lower specs" have nothing to do at all with why you cannot print. Are you connected to the same Wi-Fi network that the printer & the iPad 3 is on?

  • Input Tax code from logical partner LS but not from indiv vendor partner LI

    Hi,
    Find that tax code at vendor invoice is being taken from logical partner (LS) , but not from the individual vendor partner number (LI) . Bothe the partners are maintained in WE20 , OBCA , OBCD & OMRY.
    Like to know the reason / setting to pick up tax code from logical partner (tax rates are same in both cases).
    With regards,
    Mrinal

    Hi Dove,
    I think you can use a substitution for field Bank Type at Item Level (TCODE OBBH). This would fill your bank type when you post the document in FI, then you won't have problems in F110.
    Hope that helps.Cheers.
    Ignacio.

  • PDF prints from Acrobat 8 Pro, but not from Acrobat 9 Pro

    I have a PDF that prints fine when I print from Acrobat 8 Pro, but when I open the same PDF in Acrobat 9 Pro, only portions of each page actually print out.
    All systems running Windows XP Pro, SP3
    A8P 8.1.2
    A9P 9.1.1
    Any ideas?

    Well, for those following this thread or needing a solution, I found a work-around though I'm still not sure why the initial problem exists.
    In Acrobat 9 Pro, once you have the main print dialogue box open, follow the steps below:
    1) Click ADVANCED
    2) Select PRINT AS IMAGE
    3) Set DPI to 300
    4) Click OK
    5) Make any other typical print setup adjustments as you normally would and finish printing as usual

  • Apps move from ipad to iphone, but NOT from iphone to ipad?  Please help.

    Does anyone have an idea on how to solve this issue?

    Apps don't move from one iOS device to another. That's impossible.
    All apps originate from Apple. They are downloaded directly to your iPhone or iPad. Or, you can download them to your computer, then sync the iOS device using iTunes. In any event, you only have to pay for an app once. Anything you downloaded on one device can be downloaded to another device. Apple does not charge you for the same app twice, as long as you use the same Apple ID for both.

  • DST prob for conversion from US/Eastern- GMT but not from GMT- US/Eastern.

    Hi folks,
    I'm running the following SQL against a Oracle 10.2.0.1 g server using Oracle SqlDeveloper 1.5.3 & then again using SQLPlus 10.2.0.1.0.
    I'm attempting to provide SQL that highlights the jump forward by one hour at 2am US/Eastern on 14th Mar 2010.
    In order to do this I've converted times from GMT into US/Eastern using the oracle function from_tz and to_timestamp.
    The following sql statements are suffixed with a 'correct' or 'incorrect' as to whether they correlate to what I would expect and indeed to the time returned from the World Clock website.
    =======================
    = Via Oracle SqlDeveloper 1.5.3
    =======================
    -- The first section of selects highlight the jump of 1 hour forward that occurs on the 14th of March 2010 by converting the GMT time to the corresponding US/Eastern time and the second block reverses the conversion.
    select from_tz(to_timestamp('14-MAR-2010 0500' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 00:00:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0600' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 01:00:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0659' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 01:59:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0700' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 03:00:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0701' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 03:01:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0800' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 04:00:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0000' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 05:00:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0100' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 06:00:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0159' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 06:59:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0200' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 07:00:00.000000000 US/EASTERN incorrect
    select from_tz(to_timestamp('14-MAR-2010 0300' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 08:00:00.000000000 US/EASTERN incorrect
    select from_tz(to_timestamp('14-MAR-2010 0301' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 08:01:00.000000000 US/EASTERN incorrect
    select from_tz(to_timestamp('14-MAR-2010 0400' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 09:00:00.000000000 US/EASTERN incorrect
    which is as I would expect. At 6:59am GMT the time in US/Eastern is 1:59 am, however, at 7:00am the time in US/Eastern is now 3:00am. This correlates to the times I get back when I perform the same calculations using the converter at the WorldClock.
    http://www.timeanddate.com/worldclock/converter.html
    However when I attempt to perform the same conversions except in reverse i.e. from US/Eastern to GMT I get different results.
    -- everything is fine up until the actual time of the change over (2am US/Eastern). With the 2:00am time though I would expect Oracle or perhaps even the SqlDeveloper client to indicate either of the following :-
    a) the time 14-MAR-10 02:00am US/Eastern is actually a non-existant time as per the WorldClock.
    b) that it's defaulting the time 14-MAR-10 02:00am to 14-MAR-10 03:00am US/Eastern
    instead the results proceeding the sql statements are output and for any time on/after 2am they are 1 hour behind their correct GMT times as per the world clock.
    I understand that there is a patch for timezone's from 10.2.0.1 to 10.2.0.4 that should address this, however, the reason I'm posting this is because when I run the above SQL in sqlplus against the same server I get different results except this time both conversions are incorrect.
    =======================
    = Via SqlPlus 10.2.0.1.0
    =======================
    select from_tz(to_timestamp('14-MAR-2010 0500' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 00.00.00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0600' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 01.00.00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0659' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 01:59:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0700' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 02.00.00.000000000 US/EASTERN incorrect
    select from_tz(to_timestamp('14-MAR-2010 0701' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 03:01:00.000000000 US/EASTERN incorrect
    select from_tz(to_timestamp('14-MAR-2010 0800' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 03.00.00.000000000 US/EASTERN incorrect
    select from_tz(to_timestamp('13-MAR-2010 2300' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 04.00.00.000000000 GMT correct
    select from_tz(to_timestamp('14-MAR-2010 0000' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 05.00.00.000000000 GMT correct
    select from_tz(to_timestamp('14-MAR-2010 0100' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 06.00.00.000000000 GMT correct
    select from_tz(to_timestamp('14-MAR-2010 0159' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 06.00.00.000000000 GMT correct
    select from_tz(to_timestamp('14-MAR-2010 0200' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 07.00.00.000000000 GMT incorrect
    select from_tz(to_timestamp('14-MAR-2010 0300' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 08.00.00.000000000 GMT incorrect
    select from_tz(to_timestamp('14-MAR-2010 0301' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 08.01.00.000000000 GMT incorrect
    select from_tz(to_timestamp('14-MAR-2010 0400' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 09.00.00.000000000 GMT incorrect
    so it's as if the Oracle Client SqlDeveloper somehow intervenes as the results come back from the server an adjusts it for the first set of conversions but not the second.
    Basically it looks like I need the patch for the timezones for 10.2.0.1 but what about the Clients? Is there patches I then need for them? Would the SqlPlus client that ships with 10.2.0.4 return the correct results or once the patch is applied to the server.
    Has anyone else encountered this problem and if so would they be able to point me in the direction of a resource describing and resolving it?
    Thanks,
    Mark.

    Hey Robert,
    Yes indeed we are paying for Oracle support? As far as I know I logged in through metalink in an effort to investigate this problem.
    Our DBA upgraded from 10.2.0.4 to 10.2.0.1 and all the inconsistency went away thankfully.
    Thanks for taking the time to reply to me,
    Mark.

  • I have a Mac Pro and an iPad and an iPhone. I can send and receive emails from my gmail account; however, I have a second account and I can receive emails on all 3 devices, but NOT send any emails on this second account on the iPhone or the iPad

    cannot send emails on the second account on iPad and iPhone, yet I can on the Mac Pro

    Hello Maria,
    Most issues with Mail on your iOS devices can be resolved by following the steps in the article below. For your specific issue, you may need to remove the account and add them back in. 
    Get help with Mail on iPhone, iPad, and iPod touch
    http://support.apple.com/en-us/TS3899
    Regards,
    -Norm G. 

  • Can print from MacBook via Airport, but not from eMac

    I recently set up wireless network via an Airport Time Capsule. I've connected my Epson Stylus C84 via the USB hub. I can print wirelessly from the MacBook, but I get a "Communication Error" when attempting to print from my eMac (which works just fine when directly connected to the printer.)
    Thoughts? (It's driving me nuts!)

    You'll need to invest in an Airprint printer, or look into a hack such as AirPrint Activator.
    The only Apple supported/suggested method is to look into getting an AirPrint supported printer.  To find them you can go to store.apple.com and on the side is an AirPrint printers section.

  • Why will my IPad print from my gmail account but not from my Yahoo email?

    I just got a new printer & it works for my gmail account but won't print from Yahoo. Also Yahoo is showing a lock on its tab at the top of page although I am able to look at my emails. Can anyone please advise me as to what to do? Thanks.

    A restore might help.
    Backup & Restore
    Restore iOS

  • Ipad 2 with ios 6, trying to save photo from facebook get saved but not saved, on other sites try to save get no data available

    Since installing ios 6 on mynipad 2 when I try to save a picture from facebook I get saved but it is not in my photos. Also on other sitesvsaving pictures get data not available.

    facing same issue... can anyone have solution?

  • Why does eprint work from my gmail account but not from my hotmail account?

    Hi,
    i have a photosmart premium C310 series and have a problem with eprint! When I sent a word file (or any other file) from my gmail account all works fine, but when I sent the same file from my hotmail account i get a 'Delivery Status Notification (failure)' and my mail doesn't reach the printer.....!!??
    Anyone any idea? Thx
    Grtz Erik

    Hi schummi737,
    Sounds like there are some settings in hotmail which is causing the communication issue. You will need to contact Hotmail technical support to help you make changes to the settings.
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"

  • What will make the picture from FCP studdering from the HDMI output, but not from the firewire output ?

    I have a Mac Mini 2010, 8G ram,running on Snow Leopard. I'm playing some video clips from FinalCut Pro 7.0.3. When I'm using the HDMI output,the picture will be studdering on a horizontal panning picture. This problem does not happen when I'm using the firewirw output, which I can't use anymore with my new playback system..
    Is there any setup I can use to fix this studdering?

    Sorry about that, have had no need for pasting output so far as I was using Ubuntu/Mint/Sabayon so could work most things out myself.  Thanks for letting me know   Also, please mark this post SOLVED as well as STUPID lol.  I removed Pulseaudio and went over my Alsamixer settings with a LOT more careful attention, discovered that something vital was not unmuted. Doh!!  Have to say, Arch is the best learning experience ever, though

  • HT201335 AirPlay Mirroring is working from iPad and iPhone, but not from Macbook Pro.  How to fix?

    I can see and activate AirPlay Mirroring from Macbook but nothing displays on the TV when mirroring is activated (screen changes from Apple TV menu to blank screen only).  I have 3rd generation Apple TV and a brand new Macbook Pro, so AirPlay Mirroring is supported by both devices.  I can display video content on the TV from my MacBook from iTunes by selecting to display on Apple TV instead of my computer, but it does not work for mirroring.
    For reference, when I activate AirPlay Mirroring from iPad or iPhone, it works perfectly and content is displayed on my TV.
    Has anyone else had this problem and know how to fix it?

    Hello jsa1973,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/ts4215
    About AirPlay Mirroring in OS X Mountain Lion
    http://support.apple.com/kb/ht5404
    Best of luck,
    Mario

  • ICal appts syncing from Mac to iPhone, but not from Mac to iPad.

    Events ARE syncing from iPad to Mac, iPad to iPhone and iPhone to iPad. 
    All devices are on most updated OS and are syncing through iCloud. 

    This helped me solve the problem:
    https://discussions.apple.com/message/15810596#15810596
    only problem is there is now duplication of all events being synced from my mac.

  • I can burn CDs from Windows Media Player, but not from itunes.  I always get Error 2131.  How do I transfer music files from itunes to Window Media Player Library?...or convince itunes to burn a CD?

    Cannot burn CD from itunes.

    The thing is, they are in the unprotected format? (
    They are protected WMA from when you RIP'd them with WMP. iTunes will not read them.
    Go to WMP Tools -> Rip Music.
    Under Rip settings, it is set to *Windows Media Audio* and most likely *Copy protect music* is ticked. This is how it is protected.
    You will need to reRIP them all from CD.

Maybe you are looking for

  • SSO, LDAP Authentication & IIS

    Hi All, I am trying to config the sso with the iis, 1. after configuring the LDAP I manage to login to the dashboard with user "richard" 2. but when I am trying to enter with "Domain_name\richard" I am getting an error massage "invalid username passw

  • Sharing libraries with other user accounts

    please help, iTunes gurus, I'm stuck. I want to share iTunes libraries between 2 user accounts, on the same computer. The machine runs Windows XP Home, and both accounts are Computer Administrator level but have their file spaces set as private. What

  • Installing Windows 7 via Bootcamp on Snow Leopard.  No Disc Drive.

    Hi all, I have a White macbook late 2006 model.  The superdrive in it has failed and I'm trying to install Windows 7 via Bootcamp.  I downloaded an open source app called rEFit that allows me to boot to a usb drive.  I created the boot camp partition

  • Xy graph cursor issue

    Hi, I am having a weird issue with cursors on XY Graph. I am unable to grab the cursor and even when I manually put the X value in the cursor legend, the cursor sometime go to go to that X value. And the issue is very intermittent. The cursors work s

  • PDF String literal Parsing Issue

    I have the following contents in the same PDF page, in different ObjectX: link to original file First:     [(some text)] TJ ET Q     [(some other text)] TJ ET Q Very simple and basic so far... **The second**:     [( H T M L   E x a m p l e)] TJ ET Q