How to enter printer code into new eprint acount. first acount was deleted. (photosmart 7510)

I eneterd my printer code into my eprint account, then mistakenly deleted the account. I set up a new account, but now I can't add the printer. I get the message "invalid code". The printer is a photosmart 7510.

You may need to disable and then enable Web Services from your printer to get a new printer code and then register that code.
I am an HP employee

Similar Messages

  • Unable to sign up/enter prinder code for new printer?

    Unable to access eprintcenter.com to sign up & enter printer code for my new printer??

    Hello,
    It may be that you have a SnapFish.com account. Alot of long time customers of HP have SnapFish.com accounts and do not realize it. One of the printer software releases signed customers up automatically, and most people did not know, or forgot, because they never used it. Try going to SnapFish.com and using the forgot password link at the log in screen there. Once you have the password reset, go to ePrintCenter.com and use the SnapFish.com log in information to log in. If that does not help you may need to contact SnapFish.com directly to have them delete the account, or use a different email to register with.
    If you are getting an error message, let me know the error and I will see what I can find on it.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • HT6220 I have an Epson WF 7610 wifi printer that i connect using my internet modem. How do i print from my new ipad air?

    I have an Epson WF 7610 wifi printer that i connect using my internet modem. How do i print from my new ipad air?

    Read About AirPrint

  • How do I print from my new Ipad to my Canon printer on my wireless network

    How do I print from my new Ipad to my Canon printer on my wireless network

    Actually, the article tells you to get it on the same network...but not how.  No Canon specific application is needed for printer setup.  It can all be done from the front panel of the printer.
    Look at the manual, it will describe how to get the printer on to your wire wirelless network.  Canon support can help.
    Next connect you iPad to the same network.  The in applications that print, you will find a print option in the share menu.  The printer should be selectable from there.

  • Trying to enter printer code

    cant find where to put printer code for HP  ePrint mobile printing
    CBailey

    Hi,
    Do you have the printer code ? If yes, you have to use it to creat an ePrint account from the following site:
       https://h30495.www3.hp.com/
    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.

  • What is the formula for automatically entering todays date into Numbers.  In Quattro, it was '@today', but I cannot find it in numbers.  Thx

    What is the formula to automatically enter 'current date' into spreadsheet?  In Quattro, it was '@today', but I cannot find it in the Numbers spreadsheet.  Thx

    201,
    Do you want it to update or always show the date when entered?
    For updates, use the TODAY() function.
    For a static date, use Insert > Date and Time.
    Regards,
    Jerry

  • How do I print a photo on 8 1/2 x 11 paper HP 7510 from a I phone. I can do it on 4/6 photo paper

    How do I print a photo on 8 1/2 x 11 paper HP 7510 from a I phone.  I can do it on 4/6 photo paper.
    This question was solved.
    View Solution.

    That photo size is not supported by AirPrint. Here is a link to AirPrint FAQs for your model of printer. Click the plus size next to the Question " What paper and media sizes are supported? There is states that the photo tray is the default setting. I hope that this helps.
    I am a former employee of HP...
    How do I give Kudos?| How do I mark a post as Solved?

  • How to restructure this code into separate classes?

    I have C# code that initializes a force feedback joystick and plays an effect file(vibrates the joystick). I have turn the console application into library
    code to make a dll so that I can use it in LabVIEW. 
    Right now all the code is written under one class, so went I put the dll in LabVIEW I can only select that one class. labVIEW guy told me that I need to
    restructure my C# code into separate classes. Each class that I want to access from LabVIEW needs to marked as public. Then I can instantiate that class in LabVIEW using a constructor, and call methods and set properties of that class using invoke nodes and
    property nodes.
    How can I do this correctly? I tried changing some of them into classes but doesn't work. Can you guys take a look at the code to see if it is even possible
    to break the code into separate classes? Also, if it is possible can you guide me, suggest some reading/video, etc.
    Thank you
    using System;
    using System.Drawing;
    using System.Collections;
    using System.Windows.Forms;
    using Microsoft.DirectX.DirectInput;
    namespace JoystickProject
    /// <summary>
    /// Summary description for Form1.
    /// </summary>
    public class Form1 : System.Windows.Forms.Form
    private System.Windows.Forms.Label label1;
    /// <summary>
    /// Required designer variable.
    /// </summary>
    private System.ComponentModel.Container components = null;
    private Device device = null;
    private bool running = true;
    private ArrayList effectList = new ArrayList();
    private string joyState = "";
    public bool InitializeInput()
    // Create our joystick device
    foreach(DeviceInstance di in Manager.GetDevices(DeviceClass.GameControl,
    EnumDevicesFlags.AttachedOnly | EnumDevicesFlags.ForceFeeback))
    // Pick the first attached joystick we see
    device = new Device(di.InstanceGuid);
    break;
    if (device == null) // We couldn't find a joystick
    return false;
    device.SetDataFormat(DeviceDataFormat.Joystick);
    device.SetCooperativeLevel(this, CooperativeLevelFlags.Exclusive | CooperativeLevelFlags.Background);
    device.Properties.AxisModeAbsolute = true;
    device.Properties.AutoCenter = false;
    device.Acquire();
    // Enumerate any axes
    foreach(DeviceObjectInstance doi in device.Objects)
    if ((doi.ObjectId & (int)DeviceObjectTypeFlags.Axis) != 0)
    // We found an axis, set the range to a max of 10,000
    device.Properties.SetRange(ParameterHow.ById,
    doi.ObjectId, new InputRange(-5000, 5000));
    // Load our feedback file
    EffectList effects = null;
    effects = device.GetEffects(@"C:\MyEffectFile.ffe",
    FileEffectsFlags.ModifyIfNeeded);
    foreach(FileEffect fe in effects)
    EffectObject myEffect = new EffectObject(fe.EffectGuid, fe.EffectStruct,
    device);
    myEffect.Download();
    effectList.Add(myEffect);
    while(running)
    UpdateInputState();
    Application.DoEvents();
    return true;
    public void PlayEffects()
    // See if our effects are playing.
    foreach(EffectObject myEffect in effectList)
    //if (button0pressed == true)
    //MessageBox.Show("Button Pressed.");
    // myEffect.Start(1, EffectStartFlags.NoDownload);
    if (!myEffect.EffectStatus.Playing)
    // If not, play them
    myEffect.Start(1, EffectStartFlags.NoDownload);
    //button0pressed = true;
    protected override void OnClosed(EventArgs e)
    running = false;
    private void UpdateInputState()
    PlayEffects();
    // Check the joystick state
    JoystickState state = device.CurrentJoystickState;
    device.Poll();
    joyState = "Using JoystickState: \r\n";
    joyState += device.Properties.ProductName;
    joyState += "\n";
    joyState += device.ForceFeedbackState;
    joyState += "\n";
    joyState += state.ToString();
    byte[] buttons = state.GetButtons();
    for(int i = 0; i < buttons.Length; i++)
    joyState += string.Format("Button {0} {1}\r\n", i, buttons[i] != 0 ? "Pressed" : "Not Pressed");
    label1.Text = joyState;
    //if(buttons[0] != 0)
    //button0pressed = true;
    public Form1()
    // Required for Windows Form Designer support
    InitializeComponent();
    // TODO: Add any constructor code after InitializeComponent call
    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    protected override void Dispose( bool disposing )
    if( disposing )
    if (components != null)
    components.Dispose();
    base.Dispose( disposing );
    #region Windows Form Designer generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    public void InitializeComponent()
    this.label1 = new System.Windows.Forms.Label();
    this.SuspendLayout();
    // label1
    this.label1.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
    this.label1.Location = new System.Drawing.Point(8, 8);
    this.label1.Name = "label1";
    this.label1.Size = new System.Drawing.Size(272, 488);
    this.label1.TabIndex = 0;
    // Form1
    this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
    this.BackColor = System.Drawing.SystemColors.ControlText;
    this.ClientSize = new System.Drawing.Size(288, 502);
    this.Controls.AddRange(new System.Windows.Forms.Control[] {
    this.label1});
    this.Name = "Form1";
    this.Text = "Joystick Stuff";
    this.ResumeLayout(false);
    #endregion
    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    using (Form1 frm = new Form1())
    frm.Show();
    if (!frm.InitializeInput())
    MessageBox.Show("Couldn't find a joystick.");

    Imho he means the following.
    Your class has performs two tasks:
    Controlling the joystick.
    Managing the joystick with a form.
    So I would recommend, that you separate the WinForm from the joystick code. E.g.
    namespace JoystickCtlLib
    public class JoystickControl
    private Device device = null;
    private bool running = true;
    private ArrayList effectList = new ArrayList();
    private string joyState = "";
    public string State { get { return this.joyState; } }
    public bool InitializeInput() { return true; }
    public void PlayEffects() { }
    private void UpdateInputState() { }
    So that your joystick class does not reference or uses any winform or button.
    btw, there is a thing which is more important than that: Your polling the device in the main thread of your application. This will block your main application. Imho this should be a job for a thread like background worker.

  • E90: How to enter a space into a phone number?

    Hi,
    does anyone know if it's possible to enter a space into a phone number in the E90's Contacts manager? It is possible with my Nokia 9500, and I transferred my contacts from it to the E90, and spaces in phone numbers were preserved, but when I enter a new contact I can't find any way to enter a space! This is very frustrating, as I find it very useful to pad out numbers with spaces, for example to make it clearer which provider a mobile number has, or what city code a land line has, and it also makes it easier to read out numbers over the phone. I have the same problem with hypens, which are handy for separating extension numbers from the rest of the number. I see that there is an optional label "Extension (bus.)", but that's not much use if the extension is for the fax machine...
    Ian
    Solved!
    Go to Solution.

    Thanks for your suggestions, and for bringing OVI to my attention, which I hadn't heard of before. However, all the suggestions require the use of another computer or service, whereas what I want is to be able to work with my communicator "stand alone" as far as possible, without having to rely on other systems, especially Windows systems! One of the features I most appreciate about the E90 is the USB interface, which means I can make backups without having to rely on software that only runs under Windows. In my case this means I can make backups to my Linux PC very quickly and easily, without needing to install any special software.
    Ian
    24-Nov-2008 02:01 PM
    cdl_1 wrote:
    I don't know about the E90, but with the E61 and E71 you can:
    - add spaces from OVI and then update the mobile
    - add spaces in Outlook (or whatever PIM you use) and then update the mobile
    - import a text file (using PC suite) with spaces from your PC to your mobile
    My guess is that all of the above would work with the E90. Let me know!

  • Can not enter printer code

    i am trying to sign up but getting a message saying "system error"
    meaning i can not enter my printer code

    Hello hamutal,
    Welcome to the HP Support Forums.  I gather that you are unable to get to the HP Connected or HP ePrintCenter web site to enter the printer’s claim code.
    HP Connected has only been rolled out to the USA, the UK, France and Germany.  The link will use your computer to reflect your country and language settings, so if you live outside of the countries that have HP Connected you will get a server error message.  If you live outside those countries, please try going to HP’s ePrintCenter web page.  The link is https://www.eprintcenter.com.
    You can reprint the web services information sheet with the claim code to reactivate it for another 24 hours.  If you are unsure how to do this, I’ve included the Getting the Printer Claim Code document for reference.
    If I have misunderstood, please let me know.  In the next post, please also include the following information:
    What make/model/product number of HP printer do you have? How Do I Find My Model Number or Product Number?
    How is the printer connected (USB cable, ethernet, or wireless)?
    What operating system are you using on your computer? whatsmyos.com
    Thank you.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • How to enter a query into a role

    Hello Everyone,
    We are starting to look at the new analyzer.  We cannot find how to Enter a query in a role.  In the old analyzer there was a button called this.  Where is it in the new analyzer?  How to you enter and assign a query to a role?
    Thanks so much!

    Hi,
    We have a new concept of authorization where you are no more suppose to assign the query to the role from business explorer.
    I am not sure if you have gone through this but see this link a it explains about the new authorization concept that is analysys authorization.
    http://help.sap.com/saphelp_nw70/helpdata/EN/be/076f3b6c980c3be10000000a11402f/content.htm
    Now we have to create authorization object and use existing SAP autorization objects to assign authorizations...
    Also you use advanced search for searching new authorization concept in BI...this will give you plenty of links for it.
    Thanks
    Ajeet

  • How do I print code in Dreamweaver CC?

    I've just upgraded to Dreamweaver CC and I seem to be blind.
    I cannot find an option to 'print code'. Where is it?

    Hi,
    Based on a number of requests from users through Wishlist and forums, the Print Code option is introduced back in Dreamweaver.
    Fix for this is available through the latest update 13.2. This update is live now, please install & provide feedback.
    For more info, please look at: http://helpx.adobe.com/dreamweaver/using/whats-new-dreamweaver-13-2.html
    Thanks,
    Shambu

  • How to enter unlock code in xperia VL

    hello guys thank you again for the help you provided me with before  i bought unlocking code for my xperia VL ( sol21 ) locked to AU from japan and i cant see the box where to enter it  when i put a sim card it supposed to ask me for the unlock code but instead it tells me " no sim card could be reconized "  how to enter the unlock code ?  regards 

    i put a code *#*#7465625#*#*  then you go to network and you get asked to enter the pin code   and it is unlocked now  but it didn't work on Z1 so i am still on it 

  • How to convert Vb code into java?

    Hi,
    I want to know how to make conversion a visual basic source code into java. The conversion could be (1:1) scale.
    Is there any compilers making the live easier (solving this problem) ?
    Thank you all.
    Abu_ramla

    Use the JNI. VB doesent actually do anything on its own. Its just a series of calls on COM objects to performs all its work. You can call these same COM objects using the Java Native Interface or JNI. You wont have access to things designed in VB though like forms, you will have to redesign those.
    This will take extensive knowledge of COM, VB, Java, and JNI. It will take you about 1 year to get up to speed. I would say to not do this.

  • Where is place for entering print code?

    After finding the place for print code. I will also need to know why it is not accepting me sign in info. tried resetting it, but no mail came. To tell me how.

    Hi,
    You need to create an account from the following site:
       https://toran.hpconnected.com/oauth/ui/signUp
    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.

Maybe you are looking for

  • Inserting Video in Pages

    Hi Could anyone tell me how to insert movies/ videos into a Pages document?  I don't need to export it as a PDF or anything - thanks!

  • Hi, I am trying to join two clips after splitting one clip to edit 'ums' and 'ahs' in a sentence.

    Hi, I am having trouble joining clips in iMovie. Every time I try the 'join clip' choice under 'edit' is grayed out. I would like to join two clips from time to time -- not necessarily two clips that were once one and then split. Just two clips. Mayb

  • Z-A Sorting Matrix Data

    Hi, I have a Matrix Report in the following way: Itemcode Sale 001 200 002 300 003 100 004 500 005 300 I want to sort the matrix report in Decending Order Z-A on Sales Column. Please help me, it is very urgent for me. I will be Thankful to you. Thank

  • Reverting to original filename issue

    Still pretty new to Lightroom and I made a workflow error that I cannot seem to fix. Wondering if anyone had any thoughts. When I import I put original files on my working drive and my backup drive. I then work off the working drive editing. When don

  • Pipeline steps not showing Success indicator

    Hi all, While monitoring messages in the SXMB_MONI, i am getting an error in the pipeline steps. But the previous steps which are exceuted sucessfully, doesn't indicate green success indicator. Can anybody please suggest the possible reason? Thanks,