How do I create and associatio​n between my lap top and printer?

I am trying to use my  HP Photosmart e-All-in-One Printer - D110a to scan a picture and, instead of saving it to a file, I want to send it directly to an email.
I am using an Acer laptop, with windows 8
1)  I clicked on scan picture (from the HP Solution Centre)
2)  I selected the 'scan to email' option
3)  the next page was where I 'named' the pic; input the email address I wanted it to go to; and wrote the body of the email
So far, So good
At this point a message come onto the screen, it is titled Email and states
"There is no email program associated to perform the requested action.  Please intall an email program or, if one is already installed, create an association in the Default Programs control panel."
It has an OK button, but when clicked it just closes the message.
I have gone thru as many programs as I can that I think may be associated with, or give me a hint, on how to do this.  No Luck!
Any and all help with this would be greatly appreciated.
At this point I have saved the pic on my lap top and then just attached the file, but I would really like to know how to "create an association"
AFTER POSTING THIS QUESTION I REALIZED MY EMAIL ADDY WAS NOT CURRENT - IF I DO NOT RESPOND TO WHOMEVER HELPS ME WITHIN A COUPLE OF DAYS (i'm going to change it now) PLEASE SEND DIRECTLY TO ME AT  [Personal Information Removed]
SORRY ABOUT THAT - DOH

Hey floridiansue,
Do you have an installed email program such as Microsoft Outlook?  If your email is through an online login, such as Gmail, etc, then one will have to create an email association with a program such as Microsoft Outlook on the PC for this Scan to Email system to function.
-------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------
I am not an HP employee.

Similar Messages

  • Using macbook pro, how do I create and print labels

    how do I create and print labels using macbook pro

    Do you mean address labels ? Please check out this link
    http://smallbusiness.chron.com/can-print-address-labels-macbook-pro-58714.html
    http://support.apple.com/kb/ht3952

  • How to add zooming and printing in e-magazine created by indesign?

    Could you please give ma an advise me how to add zooming and printing in e-magazine created by indesign? Many thanks

    Ooohh... you mean, like the one mentioned in http://indesignsecrets.com/adding-zoom-and-print-to-indesign-swf-files.php?
    But they want to get paid for their hard work, the bastards!

  • How to accessed,created and modified date of particular file in java

    Hi,
    I am facing one problem.
    I know how to get the modified date/time of file in java.
    but i don't know how to find created and accessed date/time of file in java.
    Thanks,
    Tejas

    I guess thats not possible in in Windows.
    But if u r trying it on a unix machine.
    You can use Runtime class to call exec on the command
    ls -l filename
    and then store the result in a file . And then take out the last modified time. But you cant get created time.
    Thats a clumpsy way i believe.

  • Re: How do you create and use "common" type classes?

    Hi,
    You have 2 potential solutions in your case :
    1- Sub-class TextNullable class of Framework and add your methods in the
    sub-class.
    This is the way Domain class work. Only Nullable classes are sub-classable.
    This is usefull for Data Dictionary.
    The code will be located in any partition that uses or references the supplier
    plan.
    2- Put your add on code on a specific class and instanciate it in your user
    classes (client or server).
    You could also use interface for a better conception if needed. The code will
    also be in any partition that uses or references the supplier plan where your
    add on class is located.
    If you don't want that code to be on each partition, you could use libraries :
    configure as library the utility plan where is your add-on class.
    You can find an example of the second case (using a QuickSort class,
    GenericArray add-on) with the "QuickSort & List" sample on my personal site
    http://perso.club-internet.fr/dnguyen/
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    http://perso.club-internet.fr/dnguyen/
    Robinson, Richard a écrit:
    I'm relatively new to forte and I'd like to know how can you handle utility
    type classes that you want to use through out your application? Ideally
    what I want is a static class with static methods.
    Let's say that I have a StringUtil class that has a bunch of methods for
    manipulating strings.
    My problem is that we have code that runs on the client and code that runs
    on the server. Both areas could use the StringUtil class, but from what I
    understand, I have to create StringUtil in a plan and then create a server
    object of type StringUtil. The server object will eventually get assigned
    to a partition. That's not good since I really want the server object to
    physically reside at the server end and at the client end. (Actually, I
    don't want a server object, I just want to invoke a static method of a
    static class).
    Any clues on how to solve this problem would be appreciated.
    Also, what is the url at Sage-it that has a summary of all emails that have
    been posted to [email protected]? Perhaps this question has been
    answered previously.
    Thanks in advance
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Richard,
    Your question about "utility classes" brings up a number of issues, all of
    which are important to long-term success with Forte.
    There is no such thing as a static method (method that is associated with a
    class but without an implicit object reference - this/self/me "pointer") in
    TOOL, nor is there such thing as a global method (method not associated
    with a class at all). This is in contrast to C++, which has both, and
    Java, which has static methods, but not global classes. Frequently, Forte
    developers will write code like this:
    result, num : double;
    // get initial value for num....
    tmpDoubleData : DoubleData = new;
    tmpDoubleData.DoubleValue = num;
    result = tmpDoubleData.Sqrt().DoubleValue;
    tmpDoubleData = NIL; // send a hint to the garbage collector
    in places where a C++ programmer would write:
    double result, num;
    // get initial value for num....
    result = Math::Sqrt(num);
    or a Java programmer would write:
    double result, num;
    // get initial value for num....
    result = Math.sqrt(num);
    The result of this is that you end up allocating an extra object now and
    then. In practice, this is not a big deal memory-wise. If you have a
    server that is getting a lot of hits, or if you are doing some intense
    processing, then you could pre-allocate and reuse the data object. Note
    that optimization has its own issues, so you should start by allocating
    only when you need the object.
    If you are looking for a StringUtil class, then you will want to use an
    instance of TextData or TextNullable. If you are looking to add methods,
    you could subclass from TextNullable, and add methods. Note that you will
    still have to instantiate an object and call methods on that object.
    The next issue you raise is where the object resides. As long as you do
    not have an anchored object, you will always have a copy of an object on a
    partition. If you do not pass the object in a call to another partition,
    the object never leaves. If you pass the object to another partition, then
    the other partition will have its own copy of the object. This means that
    the client and the server will have their own copies, which is the effect
    you are looking for.
    Some developers new to Forte will try to get around the lack of global
    methods in TOOL by creating a user-visible service object and then calling
    methods on it. If you have a general utility, like string handling, this
    is a bad idea, since a service object can reside only on a single
    partition.
    Summary:
    * You may find everything you want in TextData.
    * Unless you anchor the object, the instance will reside where you
    intuitively expect it.
    * To patch over the lack of static methods in TOOL, simply allocate an
    instance when required.
    Feel free to email me if you have more questions on this.
    At the bottom of each message that goes through the mailing list server,
    the address for the list archive is printed:
    http://pinehurst.sageit.com/listarchive/.
    Good Luck,
    CSB
    -----Original Message-----
    From: Robinson, Richard
    Sent: Tuesday, March 02, 1999 5:44 PM
    To: '[email protected]'
    Subject: How do you create and use "common" type classes?
    I'm relatively new to forte and I'd like to know how can you handle utility
    type classes that you want to use through out your application? Ideally
    what I want is a static class with static methods.
    Let's say that I have a StringUtil class that has a bunch of methods for
    manipulating strings.
    My problem is that we have code that runs on the client and code that runs
    on the server. Both areas could use the StringUtil class, but from what I
    understand, I have to create StringUtil in a plan and then create a server
    object of type StringUtil. The server object will eventually get assigned
    to a partition. That's not good since I really want the server object to
    physically reside at the server end and at the client end. (Actually, I
    don't want a server object, I just want to invoke a static method of a
    static class).
    Any clues on how to solve this problem would be appreciated.
    Also, what is the url at Sage-it that has a summary of all emails that have
    been posted to [email protected]? Perhaps this question has been
    answered previously.
    Thanks in advance

  • How can I address and print an envelop from a letter created in Pages 09?

    How can I address and print an envelop from a letter created in Pages 09?

    You can copy & paste the address from the letter into a document formatted to envelope size. I prefer to use the EasyEnvelopes widget. If you have copied an address to the clipboard, it will automatically be added to the widget.

  • HT201441 how can i create and audio cd from a music track I have on my ipod

    how can i create and audio cd from a music track I have on my ipod

    This is how:
    Go to:
    'File'
    'Share'
    'Quicktime'
    'Expert Settings'
    'Audio as AIFF' or pick your brand of compression.
    Drag and drop the resulting file into iTunes.
    Enjoy!
    P.S. - You didn't need to delete the video but I think that'll be okay.

  • How do we create and publish templates in SRM ?

    Good day guru's
    How do  we create and publish templates in SRM , for contracts management ?
    Your help will be appreciated

    Hi,
    What is your SRM version?
    There are 3 buttons (Create, Create template, Create from Template) in the Process Contract screen, bbp_ctr_main in SRM50 (SRM_SERVER 550).
    Regards,
    Masa

  • How do a create and save a contact sheet in Elements12?

    I saw how to create and print a contact sheet, but I want to save it and then email it.  I don't see how to do that.
    Thank you

    Jellis96 wrote:
    I saw how to create and print a contact sheet, but I want to save it and then email it.  I don't see how to do that.
    Thank you
    Since you know how to create and print then saving it should be pretty easy.  However, before I tell you how to do this, let me ask you have you got Adobe Acrobat (full version) or some other pdf creator?  There are many free pdf creator out there but you might already have something on your system.
    Assuming you have a pdf creator then instead of printing to a printer, try "printing to a pdf file" and this should allow you to save the file which can then be emailed to your friends and colleagues.
    Hope this helps.

  • How to create and print contact sheet using photoshop elements 10?

    how to create and print contact sheet with photoshop 10?

    Which operating system are you using?
    On a windows system you can use the Organizer
    http://www.dummies.com/how-to/content/how-to-print-contact-sheets-in-photoshop-elements-.h tml
    On a Mac, File>Contact Sheet II within the pse 10 editor

  • How do you create and save icc profiles using photoshop?

    How do you create and save icc profiles using photoshop?

    You don't. Color profiles require specific measurement hardware and software.
    Mylenium

  • How do I create and use a watermark in aperture?

    Hello there!
    How to I create and use a watermark in aperture? do I need to download a 3rd party plugin? Any recommendations?
    Thank you!

    Aperture does not support the creation of watermarks; if you want a watermark image with transparent regions you need an application that can handle alpha channels - Prewiew, Photoshop, Pixelmator, Gimp, just to name a few.
    But once you have a watermark image, you can add it to an image, when you export from Aperture. Add the watermark to one of the Export Presets. You will need to create your watermark in different sizes, so you can add it to each of the export pixel sizes for your images, that you are using.
    Another possibility would be using the BorderFX plugin. This versatile plug-in also supports to add graphic overlays to your images, either when exporting or as an Edit plug-in.  http://www.iborderfx.com/BorderFX

  • How do I create and use a ringtone without syncing and without jailbreaking?

    How do I create and use a ringtone without syncing and without jailbreaking?

    You create ringtones on your computer and sync them to your iphone.
    You can buy ringtones from the ringtones section (at the bottom of the screen when you open itunes) of the itunes app on your iphone.
    There may be apps that will do this - not sure.

  • How does APEX create and save new files. What extension does it save in?

    Hi can someone help me with this question?
    How does APEX create and save new files. What extension does it save in?
    Cheers!
    VJ

    It's really too bad we can't see VJ's face when the concept sinks in. This is one of my favorite moments when teaching APEX classes. Most people love it, some people don't. If nothing else it really proves the power and performance of the Oracle database. Each page view can generate 40+ queries, yet on the average system this takes less than .04 seconds.
    Keep in mind there are no undocumented features or "Oracle Internals" that the APEX team uses to achieve this performance, just sound database design. With every feature they add they evaluate how it will be used and design the tables and indexes to most efficiently answer the query. Sometimes this means going against "purist" normalized principals.

  • How do I create and move photos to a new folder on the iphone4?

    How do I create and move photos to a new folder on the iphone4?

    The way I do it is through iTunes.  First you have to have to import or already have the photos in your computer where you have iTunes and sync your phone.  When you have your phone connected and iTunes open click on the iphone under "devices" in the left sidebar list - then over to the right select Photos then Sync Photos and probably best to check selected folders unless you want them all, then choose the photo folders you want.  You have to have your photos in folders for multiple folders to be created in your phone, the names will be the same as the folders in your computer.  Alternately you can sync from one of your photo programs if they are listed as options and they will go to the phone in the structure you have your photos in in that program. 
    Hope this helps... There may be other ways and other third-party programs for doing this but I haven't looked...

Maybe you are looking for

  • What are the different types of bind that we can use to configure COREid?

    Hi What are the different types of LDAP bind that we can use to configure COREid? Thanks for your input.

  • HTML/Images in a JLABEL

    hi all! I have a little problem.. 1. i want to display HTML in a JLABEL.. no problem.. just setText("htmlcode..."); 2. but there is a tag i don't like.. <img border="0" src="globe.gif" width="204" height="200"> ! java does not display the image.. onl

  • Logic quitting unexpectedly every time at 'Core Audio' bit, any ideas?

    Process:         Logic Pro [142] Path:            /Applications/Logic Pro.app/Contents/MacOS/Logic Pro Identifier:      com.apple.logic.pro Version:         9.1.8 (1700.67) Build Info:      Logic-17006700~1 Code Type:       X86 (Native) Parent Proces

  • How to push deltas immediately into bw

    Dear Friends, Due to an upgradation to R3 , we have a requirement to push all the deltas immediately into BW and delete all the setup tables and data in smq1/lbwe, rsa7 etc .once the upgradation is done r3 should be intact with BW and exactly in the

  • FI-AR DATASOURCE

    Hi  all , Can any one help me to get datasource for  FI_AR  in ECC. I JUST HAVE AND IDEA THAT 0FI_AR_1 AND OFI_AR_4 EXISTS. But can any one tell how to get these datasource  in ECC. Thanks, Kiran.