Need help trying to print from my android tablet

I downloaded HP eprint and I can print pictures but when I go into my gmail account and bring up a message there seems to be no way to print the message

Hi,
If you open the eprint app, there should be a tab that allows you to add your gmail account to eprint and access it through the app - have you tried this?
"Although I work for HP, I'm speaking for myself and not on behalf of HP"
"Say "Thanks" by clicking the Kudos Star in the post that helped you.
--Please mark the post that solves your problem as "Accepted Solution"

Similar Messages

  • Emergency! i need help trying to print from light room

    I need to be able to print 4 different images in 2x3 on 4x6 paper. I created a print package with 4 2x3's. but it keeps displaying the same image in all for 2x3's and just print is on 4 different 4x6s... help?

    That is how a picture-package works.  You can make a custom package and drag specific photos into each cell.

  • I need help trying to print ,move and resize multiple images on a page to print!help!

    can anyone give me to some advice. I was using an older version of photoshop elements where i could position the image i wanted to print on the page. I could resize it, move it around and add more photo's. I print small images that I cut out for jewelry making and need to be able to add 12 small images to a 4x6 print size page. My new elements is not allowing me to do that! I'm frustrated and need help!! thanks!

    It should work just the same as before: create a blank document, place your images on it, then print it. The only difference is that you can't change the position of the image in the print window anymore.

  • Need help trying to print Date

    Im trying to print out the date in this format:
    Tuesday, Nov. 6, 2007
    Not sure how to do it...thanx

    System.out.println() and SimpleDateFormat

  • Is there a way to print from an android tablet running honeycomb (3.2) with my photosmart c410

    I can print from web sites and mail on my iPad 2 but have not yet figured out how I can do this from my Eee Asus Transformer tablet..any suggestions?

    Hi,
    From Android devices you may print by using the HP ePrint Home & Biz App.
    You may find further details listed below::
    http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c01923321&lc=en&cc=us&dlc=en&product=4059652#N82​...
    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

  • Need help, trying to print strings backwards while ignoring certain things.

    To clarify the topic what I mean is I want to spell the words the user inputs backwards while skipping over certain characters. Here's my code:
    import javax.swing.*;
    import java.util.*;
    import java.text.*;
    import java.io.*;
    class SConvert{
    private static final char BLANK = ' ';
    private static final String stop = "STOP";
    public static void main(String[] args){
    char[] ignore = new char[21];
    ignore[0] = '.';
    ignore[1] = '/';
    ignore[2] = '>';
    ignore[3] = '<';
    ignore[4] = ',';
    ignore[5] = '?';
    ignore[6] = '-';
    ignore[7] = '~';
    ignore[8] = '!';
    ignore[9] = '@';
    ignore[10] = '#';
    ignore[11] = '$';
    ignore[12] = '*';
    ignore[13] = '&';
    ignore[14] = '^';
    ignore[15] = '%';
    ignore[16] = '`';
    ignore[17] = '_';
    ignore[18] = '+';
    ignore[19] = '=';
    ignore[20] = '|';
    String word, statement, append;
    boolean go = true;
    int i, numOfchar, index;
    char[] chr;
    index = 0;
    word = " ";
    statement = " ";
    append = " ";
    Scanner scanner = new Scanner(System.in);
    while (go){
    System.out.println("Enter a word");
    word = scanner.next();
    chr = word.toCharArray();
    numOfchar = word.length();
    if (word.equals(stop)){
         break;
    else if (index < numOfchar && word.charAt(index) == BLANK + BLANK){
         index = BLANK;
    else if (index < numOfchar && word.charAt(index) == (int)ignore[19]){ //Trying to range for entire array, I don't know how.
         index++;
    else
           for (i = word.length() - 1; i >= 0; i--)
              statement = statement + chr;
              append = append + " " + statement;
    System.out.print(append + " ");
    What's messing me up is the fact that whenever I try to enter words into the program, printing append only repeat EVERY occurance of statement. For example, say I type in "Ham with gravy." I get "maH htiwmaH yvarghtiwmaH".
    That's not what I want. Also, I don't know how to make the entire array of ignore available to the program, anyway to do that?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Wow. What's with the hostility? Even I was in error of detecting anything that could have solve the problem completely there's no need to use such a negative tone, epsecaility with someone who is learning to program in OOP, let alone the syntax of Java. Also, no your program did not solve all of my problems in it's original form. Let's take a look at it.
    Here's your code:
    import java.lang.String;
    import java.util.*;
    public class ReverseString {
      public void ReverseString(){
      public void printReverse(String s){
         int i;
        String noPrint = "no print'";
        char ch = '*';
        if(s.length()>1) printReverse(s.substring(1));
         ch = s.charAt(0);
        if (!noPrint.contains(ch + " ")) System.out.print(ch);
        return;
      public static void main(String[] args) {
          String myString = Here is my String.;
       System.out.print("My String: " + myString + " Reverse: ");
       new ReverseString().printReverse(add);
       System.out.println();
    }In it's original state the program doesn't allow for any user input, which is something I needed (and added on my own), it doesn't convert the ignore[] I had in my original code to anything readable (however this can be done in the noprint String quite easy as someone else mentioned earlier.) the if command does in fact ignore the special characters in noprint String HOWEVER it doesn' t not print those characters as they would appear in the myString String in the position that it original appeared in (which is the primary problem I am having.) That is the problem with your code and why it is not the complete to soultion to my homework problem. I've modified your code to satisifed all but one of the problems.
    Modified:
    import java.lang.String;
    import java.util.*;
    public class ReverseString {
      public void ReverseString(){
      public void printReverse(String s){
         int i;
        String noPrint = "~`!@#$%^&()-=+[{]}\':;?/>.<,'";
        char ch = '*';
        if(s.length()>1) printReverse(s.substring(1));
         ch = s.charAt(0);
        if (!noPrint.contains(ch + " ")) System.out.print(ch);
        return;
      public static void main(String[] args) {
           Scanner scanner = new Scanner(System.in);
          String myString;
          String add = " ";
           while (true) {
       System.out.println("Please input String.");
       myString = scanner.next();
       add = add + myString;
              if (myString.equals("STOP")){
                   break;
       System.out.print("My String: " + add + " Reverse: ");
       new ReverseString().printReverse(add);
       System.out.println();
    }If you run this code you'll see what am talking about. The only remaining problem, which I am about to restate if you are still unclear of it, is that the noprint String contents are ignored but not printed in the original position. If you are still having trouble understanding what I am talking about then let me show what I got by running the program.
    String: Ham with grav?y
    Reverse: yvarg htiw maH. [Note the ? is missing.]
    By removing the ! in the if command I get:
    Reverse: y?varg htiw maH. [Now the ? is in the wrong position.]
    It's suppose to be:
    String: Ham with grav?y
    Reverse: yvarg htiw ma?H.
    Secondly, I understand that you are frustrated with my apparent lack of understanding of proper Java tems and syntax but you must keep in mind I am student thus I am not fully aware of java as you are. With that one would expect you to act with a bit more patience, yet you not only took offense to an innocent comment you choose to slander my name and intelligence by erasing your code and calling my understanding of Java, ?ignorant.? I may be less than careful with my choice of words concerning Java but I do understand enough code to know the inner workings of a typical program, so please refrain from calling me ignorant or any variant of this in the future.
    I merely asked for help from general populous, do not think I owe you any particular praise for your code even if I find it is not exactly what I desired. I may be new to java but I am not new the message boards. With that said I find your response awfully rude and ask if you to refrain from do so in the future. I'm assuming you are an adult so act least act like someone with a bit of civility. If you were so committed to believing your code was the de facto solution to this problem then you could have simply asked why I say what I said, if had done so and shown me the error of my statement I would have not taken offense. Instead you choose to throw a fit and deleted your code. I do not know if you are like this around other board members but you should at least show courtesy to all members of this forum regardless of their time here.
    With that said, I think I've all ready found a solution to this problem I've had. I'll just tell the program to simply count over the position the character is in. That way it will stay in the same position.

  • I need help, trying to update from 3.1.3 to 4 or higher.

      Im not sure which generation it is or whatever but I do not have a camera on mine. anyways i am trying to figure out how to udate it from 3.3 to 4 or higher.

    You connect it to iTunes on a computer and check for updates. If iTunes says none are available, it can't be updated further.
    (70490)

  • How to print from an android tablet to an hp eprint 5510 printer

    I have a samsung 10.1 galaxy note tablet ..i am having problems trying to use it to print on my HP Photosmart 5510 E print in one series printer...can anyone help please. Samsung have not been very helpful.
    This question was solved.
    View Solution.

    Hi,
    Please use the following apps:
       https://play.google.com/store/apps/details?id=com.hp.android.print&hl=en
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • NEED HELP with Keyboard for Yoga 2 Android Tablet

    I have just spent more than an hour talking with Lenovo Sales/Customer Service tying to find out why the Yoga tablet I bought my son for Christmas doesn't have a keyboard (I purchased the tablet directly from Lenovo). 
    http://shop.lenovo.com/us/en/tablets/lenovo/yoga-tablet-series/yoga-tablet-2-10/
    I called sales 4 times and each time I get a different answer: they are out of the keyboard, buy the keyboard from BestBusy or Amazon, there is no keyboard (even though it is pictured), it will have a keyboard but no one knows when.
    I did buy the keyboard I was told by a chat with Lenovo from Amazon but it is not the correct keyboard and now I'm stuck with a tablet without a keyboard and keyboard without a tablet.
    Customer Service won't help saying it's a sales problem and Sales says there is nothing they can do and transfers me to Customer Service.  It is infuriating. 
    My son is so dissappinted. He only wanted this tablet because it came with a keyboard (we thought) and he can use it at school.  We will likely return the tablet if it was misrepresented on the Lenovo webiste.
    Does anyone know if and when the keyboard will be available? 

    The keyboard is also supposed to be a cover s seen in the photos. We bought the tablet because it clearly shows a keyboard case if not included at least available.
    I was willing to purchase the keyboard cover but first Lenovo sales said they were out and said to purchase the keyboard (also Lenovo) at BestBuy instead but it turned out to be the wrong keyboard (not the one in the picture - too big, falls off and likely to break). Then I was told by someone else in customer service there was no keyboard and the picture is of the prototype.  Then I was told by someone else in sales that there may be one coming out in the future but no one knows when and how much it will be.
    Today I had to spend more than an hour being bounced around and not getting an answer. We really want the keyboard as shown in the picture. Unfortunately because we thought the folks in sales knew about the tablet, we bought the wrong keyboard at their instruction and now it can't be returned.

  • This is detailed: I lost my touch pad scroll ability on my desktop when I installed Firefox, I am having a terrible time trying to sync my new Android tablet to my desktop, my desktop Firefox is acting very strangly (I need help trying to use it)

    My Vista Home Premium desktop has not used Firefox for a long time. I just loaded it as well as on my Honeycomb Android. The statement that I made pretty much says what my problem is. I can use both of them at the same time and use a router with the air Verizon card installed.
    I'll repeat my question: This is detailed: I lost my touch pad scroll ability on my desktop when I installed Firefox, I am having a terrible time trying to sync my new Android tablet to my desktop, my desktop Firefox is acting very strangely (I need help trying to use it)

    My Vista Home Premium desktop has not used Firefox for a long time. I just loaded it as well as on my Honeycomb Android. The statement that I made pretty much says what my problem is. I can use both of them at the same time and use a router with the air Verizon card installed.
    I'll repeat my question: This is detailed: I lost my touch pad scroll ability on my desktop when I installed Firefox, I am having a terrible time trying to sync my new Android tablet to my desktop, my desktop Firefox is acting very strangely (I need help trying to use it)

  • Need help trying to transfer my information from one iphone to another

    need help trying to transfer my information from one iphone to another

    If you are restoring from an icloud backup you are going to have to erase a content and setting and while in the setup prompts you will get the option to restore from an icloud back...that's the only time you will get the option to restore from an icloud back and that's during setup

  • I am trying to print from iphoto to my printer.  When I click print on under File tab it says that a theme cannot be found and that a theme needs to be intalled?  Why is this window popping up and how I install a "theme" on iphoto?

    I am trying to print from iphoto to my printer.  When I click print on under File tab it says that a theme cannot be found and that a theme needs to be intalled?  Why is this window popping up and how I install a "theme" on iphoto?

    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store or have a Recent Mac you can find it in your Purchases List.

  • Can a wireless printer be used to print from an android phone without internet connection?

    I'm trying to print invoices at a trade show from my Android phone.  Are there any wireless printers that can do that without an internet connection?  Does ePrint only work with an internet connection?

    To print from your Android phone, you would need the HP ePrint Home & Biz app available for free from the Google Play store.
    As for printing without an internet connection, your options are somewhat limited.
    First thing you would want to do is make sure that you have a printer that is compatible with the ePrint Home & Biz app. A list of supported printers can be found here: http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mobile/Cloud-Services-Supported-Printers-ePrint-Airpr...
    You next step would be to get a wireless router. You don't necessarily need an internet connection, just a router broadcasting a wireless signal. After you have the printer set up, you would want to connect it wirelessly to the router. Then you would want to connect your Android device to the same router. This will put both the printer and phone on the same network.
    As long as both devices are on the same network, the ePrint Home & Biz app will search the network for compatible printers and your printer should show up in the list, allowing you to use the app to send print jobs to it.
    However if you want to use the actual ePrint service, you will have to have an active internet connection. The way ePrint works is that your printer is assigned an email address and when you send something to that email address, it prints off on your printer. If the printer does not have an active internet connection, it has no way of reaching the servers and the print jobs will not print off. You actually wouldn't even be able to set up ePrint without being on an active internet connection. 
    Hope that helps! If you have any other questions, feel free to ask. 
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Setting Up Google Chrome Features for Cloud Printing from an Android Device

    These steps are organized for optimal setup procedure and to decrease the time it would take to set this option up from start to finish. This is a lengthy process and is more for possibly troubleshooting issues that may arise during the setup of Google Chrome's Cloud Print feature. However, if you have an Android phone or tablet and are interested in being able to print virtually anything at anytime from anywhere from your phone to any brand of printer regardless of setup, there is a way. And this is how:
    Open/Install Google Chrome onto a computer
    Sign in with personal email to access the same Google Chrome account you intent to print from
    Download Google Drive as an external storage you can access from anywhere
    Open Google Chrome Settings (three lines stacked on top of each other)
    Scroll down to the bottom of settings and click "Advanced Settings"
    "Sign in/add printers/manage printers" are three of the print options you may see here 
    Follow this link for information on:
    adding a classic printer to this option:  https://support.google.com/cloudprint/answer/1686197?rd=1
    how to add an HP ePrint email:  https://www.google.com/cloudprint/learn/printers.html#info-hp
    on registering the email of that printer (HP registration page):   https://www.google.com/cloudprint/learn/setup-hp.html
    8.  add the printer to this section of Google Chrome
    9.  at the bottom of the page you will see "Send a test page/print test page" (that will be useful later)
    10. at the top of this page is the option to share this printer with other Google Chrome users
    11. Open Google Drive from www.google.com (likely displayed at the top of the webpage)
    Can create a new document of any file type, upload, draw, etc
    Leave computer on if intending to print from off the network or another location
    The next steps are in regards to printing from a mobile device:
    Install/open Cloud Print App
    Add personal email account associated with Google Chrome
    Select printer management if on the same network as the printer
    Select Web tab and Google Drive if not on the same home network
    Find earlier test page in Google Drive Documents
    To locate other documents one could find many applications within this app or
     In another app like Documents To Go, you can select to send previously saved documents (like one might send an email on the Android) to the Cloud Print app to open, view, and print
    Print Test Document – this function means the printer has officially been added now
    In Google Drive, but within the Cloud Print app, you can select the printer that was added to this network or from "Printer Management Options."
    There are many ways to determine if your printer is still connected (offline, ready, etc.) but after confirmation that the printer is available, print jobs rest in the print queue until the printer receives the command to print.  Then the documents are stored and available for reprinting.
     Converts most print jobs to .pdf but prints most file formats from other applications as well
    In Printer Management advanced settings
    You can add a contact from the phone to use this printer
    Set as default
    See an extensive page of setup and printing options
    *After a test print while the computer was off the document did not print and the printer appeared offline until approx. 4 min after computer was rebooted, then the document printed automatically.
    Also if a document does not print, the troubleshooting guide on the phone suggested logging out of Google Chrome Cloud Print but I was unable to find that option it was suggesting (unable to log out)
    To completely finish adding any additional Google Chrome accounts that wish to share this printer using the suggestion in step 10, you must log into the email that was added and select ADD PRINTER from within the email that was sent for the confirmation and follow the link and instructions on how to do this from your email.
    Google Chrome and Google Drive support Windows, MAC, and Linux
    You can also change share options, privacy settings, etc. but if you choose to go with the two-step verification process, you may not be able to add your Google Chrome email account to the app without a 16 digit code generated within Google Chrome Privacy Settings for your app (not recommended)
    Now you have the option to also email any document to either the Cloud Print App or HP ePrint from the phone/tablet without actually accessing the app first.  Locate the document, press the menu button for more options, select "Send to" and a list of available apps will appear.  Choosing Cloud Print or HP ePrint sends the document or photo directly to the "print" function within the apps, instead of opening the app first and then searching for what it is you want to print.
    **computer connected to printer must be on**
    Requirements:  a) Google Chrome, Google Drive, and Cloud Print mobile app  b)  These steps outline the use of an Android device on the network for setup  c) will need the computer connected to the printer to be on at all times   d) go to this webpage http://www.google.com/cloudprint/learn/  if you have any more questions.
    Available features of Cloud Print App
    a.  Print all file formats from Google Drive (uploaded or create)
    b.  Has an internal notepad and drawing tool
    c.  Prints off all contacts and phone numbers as well as specified text messages
    d. The scan option actually just means take a picture
    e. Without Cloud Print Pro you get 5 days to test the features of printing Facebook pictures, Drop Box and Schedules before those features are no longer available
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!
    This question was solved.
    View Solution.

    This document is to assist others in understanding and troubleshooting Cloud Print. This took me many hours to get setup, troubleshoot, and prepare a document that is simple and easy to understand. These are literally step-by-step instructions on how you could be able to print from any Android device to any printer connected to a computer that has Google Chrome.  You would then be able to use the Cloud Print App without having to use HP ePrint to print to any printer connected to any computer (USB or wireless) basically allowing you to print virtually anything from your Android. 
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • How can i print to my officejet 100 mobile printer from an android device over bluetooth?

    I'm stumped here. I've installed the printer on my Windows PC. I'm able to pair with it (Bluetooth) from my Android tablet (Galaxy 10.1"). I've tried using a variety of printing programs from the Android Marketplace, but I can't get anything to print.
    When I try with PrinterShare, it asks me to select the printer. When I select the OfficeJet 100, I'm told that the application can't find a driver for the printer.
    Note to HP: You definitely need to improve the documentation on this printer. The docs that came with my printer make no mention of Android, and finding anything useful online is practically impossible. Very disappointing.
    This question was solved.
    View Solution.

    Downloaded printershare and $13 premium key.  Works perfectly over bluetooth for Droid Xyboard.

Maybe you are looking for

  • Some help required - creating an election simulator

    Hey there, i've only been coding java for the past month or so, and I've been going fine apart from this program i'm attempting to code (badly, I admit); To sum it up: *The program asks the user how many people are in a country. *The program asks the

  • Error send a smartform PDF by Email to Vendor

    Hi Expert, Please help me......................... I want to send a PO (Smartform) as Email to Vendor. In SAPScript the PO send by Email is working fine, but in Smartforms it is not working. Normally, I will use via Smartforms the Program = YBAA_FM06

  • Since downloading Firefox 34.05 today i can open UK national lottery website but cant log in, tho Outlook Express has no problem

    34.05 auto updated this am. Now when I try to sign in on my or my wife's lottery account, i simply revert to the sign in page. All works well on IE. Have downloaded and reinstalled 34.05 to a new folder, still can't sign in to the lottery

  • Dealer Invoice !!

    Hi In procurement from 1st stage or 2nd stage dealers is there any special customization in SPRO or its just we have to tick the MRP indicator and change excise base value during excise capture. Any help will be appreciated Thank You

  • How to move music from one video to another.

    I have two videos.  I want to take the sound off of a video, and delete only the video part.  Then,  put the soundtrack onto another video clip.   I can detach the sound from the video, but if i delete the video, the sound track goes with it.  I can