How do you find print center in iOS7 to check if a page is stuck in the queue?

My iPads had been printing fine up until today. I had a glitch with my Air Print printer. It has been resolved and two out of my three iPads can't find the printer now. I've looked around on the internet and remembered in iOS 6 the ability to find Print Center was easy. But how do I find it in iOS 7 when my iPad can't find the Air Printer in the first place? I want to check to see if a job is stuck in the queue and that is causing the error message.

This article says it better then I can.
http://support.apple.com/kb/ht4356
From the article.
Viewing the Print Summary
You can view the Print Summary by double-tapping the Home button and swiping to the right to reveal Printer Center. Then tap Print Center.
Note: Print Center is available only while printing is in progress.

Similar Messages

  • How do you find a notification for Ask to Buy for Family Sharing once it is off your screen and not in drop down Notification Center?

    How do you find a notification for Ask to Buy for Family Sharing once it is off your screen and not in drop down Notification Center?

    Welcome to the Apple Community.
    I don't believe you can.

  • How do you "Air Print" an email on ios7?

    how do you "Air Print" and email from iPhone 4s on ios7?

    Open the email, click on the backwards swirling repy arrow at the bottom, tap on print, select your printer and print.

  • How can we find print program for user defind Tr. Code.

    Hello Friends,
    If I know the user defined Script Name and Corresponding Tr. Code, How can I find Print Program. In TNAPR Table, I am getting SAP Standard forms and corresponding print programs?
    Thanks & Regards
    Sathish Kumar

    Hi Sathish,
    You can use the table TTXFP to get the name of print program by entering the Script name.
    Hope this helps.
    Regards,
    Saurabh

  • HT1848 I rented a movie on my ipod touch and want to watch it on my computer because my ipod is having trouble downloading over wifi. How do you find your rental purchases to download on a computer?

    I rented a movie on my ipod touch and want to watch it on my computer because my ipod is having trouble downloading over wifi. How do you find your rental purchases to download on a computer?

    You cannot.
    iTunes Store: Movie rental frequently asked questions (FAQ)
    If you download a rented movie on your iPhone 4 or later, iPad, iPod touch (4th generation or later), or Apple TV: It is not transferable to any other device or computer."

  • How do you find a table that doesn't have a specific word in it.

    I have two questions.
    questions 1
    How do you find a table that doesn't have a specific word in it by using a query on the whole database?
    questions 2
    How would i list all of my cars names in my database not showing duplicates?
    I have tried, tried and tried some more to get both of these, but I guess i don't know how to query a specific word.
    I also don't know how to query everything in just 1 column name.
    If anyone could help with these that would be great I have been trying queries for over an hour now and no luck.
    Thanks

    798837 wrote:
    I tried the all_tab_columns, just like you did it, however that just gives me the column name I am looking for what is not in a column.
    For example I need to find all the tables where mustang is not = 'red' but using a single query i need to find all of the tables.
    As for number 2
    I am looking for something like this
    select distinct column_name
    from all_tab_columns
    where column_name ='AcertainColumn';Now I'm even more confused. In your example, is MUSTANG a column name? Or is it the value of a MODEL column in the CARS table? And how could that possibly relate to something that exists in multiple tables?
    If your data model is at all reasonable, I would expect that you would just want
    SELECT *
      FROM cars
    WHERE model = 'Mustang'
       AND color != 'Red'but I can't see how this would relate to data stored in multiple tables.
    Justin

  • How do you find out what apps have been downloaded to what phone with 5 lines under one apple ID?  HELP Nobody from the stores know how to do it.

    How can you get a list of apps that were downloaded from each indivudal phone?  The are under one Apple ID.  Ex:  Phone #1234 has downloaded Facebook and Twitter.  Phone # 4567 downloaded Angry Birds and Temple Run.  Etc.    Even the people at ATT and Apple don't know how to retrieve it. 

    There is no such list of what is downloaded to each phone except in the backup. So if you have a recent backup of each phone you should be able to find an app that reads the backup files and would tell you what list is saved of the content on each phone.

  • How do you find your blocked numbers in Contacts or on your iphone?

    How do you find your blocked numbers in Contacts or on your iphone?
    Is there a way to get a list of the blocked numbers?

    Hey jeff work,
    Thanks for using Apple Support Communities.
    This article should be exactly what you are looking for.
    iOS 7: Understanding call and message blocking
    http://support.apple.com/kb/ht5845
    You can review your blocked list through one of the following locations:
    Settings > Phone > Blocked
    Have a nice day,
    Mario

  • How do you find your account history for what you have purchased through iTunes?

    How do you find your account history for what you have purchased through Itunes.  I have purchased apps for my Iphone and music and want to see a listing of where my money went.  I use an itunes card so I can keep an idea on how much I have spent.
    Thanks.

    iTunes Store & Mac App Store: Seeing your purchase history and ...

  • How do you close programs with new iOS7? Old way doesn't seem to work!

    How do you close programs with new iOS7? Old way doesn't seem to work!

    After double tap home button, swipe up on the app card that appears above the icon.

  • How do you connect printer to the iPad?

    How do you connect printer to ur I pad?

    You need a airprint enabled printer to print documents directly but there is also an app on the app store called print central pro which lets you connect to any printer over wifi or over google cloud print.
    Hope this helps :)

  • How do you find out who did not contribute to a particular fund raiser that we all just did?

    Using MYsql How do you find out who did not contribute to a particular fund raiser that we all just did. There are many titles to the different charities that is under the othpaytitle of the Otherpay table,  I however just want to extract the non-contributors for a particular charity title. Is there anyway to do this? When I do the the syntax below it comes up as an "empty set". The search is done by way of the table Id matching and left joins. Please see below.
    SELECT  moiid, trim(concat(name.fname,' ' ,name.mname,' ',name.lname)) as Brother, name.moiid as Members_ID, sum(otherpay.othpayamt) as NO_Contribution, quadlt.ltfname as quad 
    FROM name 
    LEFT JOIN OTHERPAY  ON name.moiid = otherpay.othpaymoiid
    LEFT JOIN quadlt  ON name.quadlt = quadlt.ltid
    WHERE  Otherpay.othpaytitle like '%food drive%'
    AND otherpay.othpaymoiid IS NULL
    AND name.type = 'BOI'
    AND name.type <> 'jrboi'
    AND name.city = 'SUFFOLK'
    GROUP BY brother
    ORDER BY name.quadlt, brother

    Just guessing based on your query,  and assuming the above query works, just insert a "where" condition. I also removed the SUM function. Also, "AND otherpay.othpaymoiid IS NULL"  may not be needed.
    SELECT  moiid, trim(concat(name.fname,' ' ,name.mname,' ',name.lname)) as Brother, name.moiid as Members_ID, otherpay.othpayamt, quadlt.ltfname as quad
    FROM name 
    LEFT JOIN OTHERPAY  ON name.moiid = otherpay.othpaymoiid
    LEFT JOIN quadlt  ON name.quadlt = quadlt.ltid
    WHERE  Otherpay.othpaytitle like '%food drive%'
    AND otherpay.othpaymoiid IS NULL
    AND name.type = 'BOI'
    AND name.type <> 'jrboi'
    AND name.city = 'SUFFOLK'
    AND othpayamt=0
    ORDER BY name.quadlt, brother

  • How do you find out if the transmitter and/or receiver leaves the session ?

    So , how do you find out if the transmitter and/or a receiver leaves the session , is there an event when this happens ?

    1. There is no list available from your end.
    2. You can't actually check. If you suspect a device has been, deauthorize it twice and then authorize it.
    (89509)

  • How do you find out what your Apple ID password is?

    A friend of mine forgot their Apple ID password and can't log in. They also don't have access to their email, but that's not the issue. He wants to know how you find out what your current Apple ID password is. He awnsered his security questions but all it would let him do is reset his password, without finding out what his current one is. How do you find out your Apple ID password?

    You can't recover a password, only change it. The reason for this is that Apple has changed their conditions for passwords. They now need to have one upper case letter, 1 number, and be at least 8 characters. Also you cannot use any password you have previously used in the last year.

  • How do you find out what information is in the 'other' section of itunes when iphone is connected

    How do you find out what information is in the 'other' section on the bottom of itunes

    You don't
    If it is much more than a gb or so, then it indicates corrupt files.  A restore should resolve.

Maybe you are looking for