BlackBerry Q10 Hotmail does not message

I can't send / receive email from phone above the message that is displayed. U.S. carrier Verizon and I did not update-not yet available on Verizon. Have the valid password, but it does not work. How can I fix it? And what is this little eye which is now popping up as when I put in password?

  • Settings > accounts > delete the hotmail account.
  • Restart: Press and hold the power button on top about 20-30 seconds, ignore the 321 timer and hold until the screen goes black and you will see the red LED.
  • Settings > accounts > add the account back.

Tags: BlackBerry Smartphones

Similar Questions

  • BlackBerry Q10 ActiveSync does not synchronize my Contacts after changing to another Exchange Server

    I changed to another supplier of services of Exchange and now the problems with my Contacts on the Blackberry Q10. After the configuration of the new Exchange ActiveSync account, I observe the folliwng:

    1. New contacts created in Outlook / Exchange Server will not synchronize to the Q10.
    2. New contacts created on the Blackberry are synchronized backed the Exchange Server / Outlook Client.
    3. BlackBerry-Contacts are visible, but won't open (like "zombies").
    4. BlackBerry Contacts from other sources (Facebook, WhatsApp) are no longer bound together, in other words, it seems that the person has multiple contacts entries.
    5. Sending / receiving mails and work on the Blackberry calendar entries.

    I fixed it myself. Now, the Contacts are all back in, deduplicated and healthy. That's what I did, step by step, in settings > accounts:
    1 turn off Sync contact on the Exchange ActiveSync account
    2 delete the Facebook account
    3 remove account Skype and gmail
    4. run "Delete local Contacts"
    5. in Contacts, check the number of Contacts: contact no.
    Then in settings > accounts:
    6. turn on synchronization of Contact for an Exchange account
    7. This brought all Exchange contacts
    8. Add Facebook, Skype and a gmail accounts.

    END

  • BlackBerry Q10 Twiiter does not work in the hub

    Hi Please help my twitter and facebook notifications alert in the hub of bb. When I try tansferring pictures of blackberry links it end with ERROR. It's now my second q10 bb in a week, but both do exactly the same thing. 08/03/2013 all new replacement today 08/10/2013 was the first purchase of the fone

    Correct, the only tweets that appear in the Hub will be those who have mentioned you or direct messages on Twitter.

    The normal timeline Tweets are not designed to appear in the hub.

    What'sApp and BBM should appear in the Hub if you have set up to appear in the hub, doesn't it?

  • BlackBerry Smartphones Hotmail does not work after upgrade to Blackberry software

    A week ago my Windows Live Hotmail has been hacked. Reset password and everything seems to be OK here. On Lun. the software upgrade of the OS 6.2xxx to 6.3xxx. Unable to get my Bold 9650 email now. The old password or the other Word works, although the old works with my Facebook account. Cannot add another hotmail account or uninstall the existing account, so I could do it again. Yes, e-mail works everywhere else. Someone knows the way through this? Thanks.soulnanlv

    Since the device, go to mobile.blackberry.com
    Scroll to connect and click Send.
    Click on join now for the e-mail service you want to add and see if it works.

  • BlackBerry Q10 timer does not work for a project of 10 Q Lable in Blackberry

    Hi all

    I'm just a new Black Berry Q 10 and just beginner. I get some helpful solutions here to correct my mistakes. I am very grateful for this site and its members.

    In my application, I would like to add a timer to a lable. for every second, I want to Christophe Lable value. Here is my code Qml and timer.

    // Default empty project template
    import bb.cascades 1.0
    import CustomTimer 1.0
    // creates one page with a label
    Page {
        Container {
            id:root
            layout: DockLayout {}
            property int f: 10
            Label {
                id: timerLabel
                text: qsTr("Hello World")
                textStyle.base: SystemDefaults.TextStyles.BigText
                verticalAlignment: VerticalAlignment.Center
                horizontalAlignment: HorizontalAlignment.Center
    
            }
            Timer {
                id: lightTimer
                // Specify a timeout interval of 1 second
                interval: 1000
                onTimeout: {
                    root.f -= 1;
                    timerLabel.text = "Timer:"+root.f;
                    lightTimer.start();
                    if(root.f<0){
                        lightTimer.stop();
                    }
                    } // end of onTimeout signal handler
            } // end of Timer
    
        }
    }
    
    #include 
    #include "timer.hpp"
    
    Timer::Timer(QObject* parent)
         : bb::cascades::CustomControl(),
         _timer(new QTimer(this))
    {
        Q_UNUSED(parent);
        connect(_timer, SIGNAL(timeout()), this, SIGNAL(timeout()));
        setVisible(false);
    }
    
    bool Timer::isActive()
    {
        return _timer->isActive();
    }
    
    int Timer::interval()
    {
        return _timer->interval();
    }
    
    void Timer::setInterval(int m_sec)
    {
        // If the timer already has the specified interval, do nothing
        if (_timer->interval() == m_sec)
            return;
    
        // Otherwise, set the interval of the timer and emit the
        // intervalChanged() signal
        _timer->setInterval(m_sec);
        emit intervalChanged();
    }
    
    void Timer::start()
    {
        // If the timer has already been started, do nothing
        if (_timer->isActive())
            return;
    
        // Otherwise, start the timer and emit the activeChanged()
        // signal
        _timer->start();
        emit activeChanged();
    }
    
    void Timer::stop()
    {
        // If the timer has already been stopped, do nothing
        if (!_timer->isActive())
            return;
    
        // Otherwise, stop the timer and emit the activeChanged()
        // signal
        _timer->stop();
        emit activeChanged();
    }
    
    #ifndef TIMER_HPP_
    #define TIMER_HPP_
    
    #include 
    #include 
    
    class QTimer;
    
    class Timer : public bb::cascades::CustomControl
    {
        Q_OBJECT
    
        Q_PROPERTY(bool active READ isActive NOTIFY activeChanged)
        Q_PROPERTY(int interval READ interval WRITE setInterval
                   NOTIFY intervalChanged)
    
    public:
        explicit Timer(QObject* parent = 0);
    
        bool isActive();
        void setInterval(int m_sec);
        int interval();
    
    public
    
    slots:
        void start();
        void stop();
    
    signals:
        void timeout();
        void intervalChanged();
        void activeChanged();
    
    private:
        QTimer* _timer;
    };
    
    #endif /* TIMER_HPP_ */
    

    and I sign up time as follws custome...

    Registering the custome timer
    qmlRegisterType("CustomTimer", 1, 0, "Timer");
        // create scene document from main.qml asset
        // set parent to created document to ensure it exists for the whole application lifetime
        QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
    

    where I'm wrong... I'm just Hello world but Timer shows no lable value. Please help me!

    Hello

    It was my mistake in looking at timer in Qml. The good way to start is given below.

    Already... .i was

      Timer {
                id: lightTimer
                // Specify a timeout interval of 1 second
                interval: 1000
                onTimeout: {
                    root.f -= 1;
                    timerLabel.text = "Timer:"+root.f;
                    lightTimer.start();
                    if(root.f<0){
                        lightTimer.stop();
                    }
                   } // end of onTimeout signal handler
            } // end of Timer
    

    but now to hide a bad start timer and start in the right way

    Timer {
                id: lightTimer
                // Specify a timeout interval of 1 second
                interval: 1000
                onTimeout: {
                    root.f -= 1;
                    timerLabel.text = "Timer:"+root.f;
    //                lightTimer.start();
    //                if(root.f<0){
    //                    lightTimer.stop();
    //                }
                   } // end of onTimeout signal handler
            } // end of Timer
    
        }
        onCreationCompleted: {
            lightTimer.start();
        }
    

    Thank you!!!

  • My Windows Live Hotmail does not work. Nothing happens when I select an e-mail message to open it.

    My hotmail does not work. Nothing happens when I try to open a new one or to read the emails. Nothing happens when I try to open one on tabs on the left as the Envoy or undesirable. I know for a fact that this is not my computer because I tried it on my own computer, but also a computer at school. It is not my network because I tried at home (in PG County) and school (in Baltimore). It is not my safety, because obviously, the security of my computer and the computers of the University are different. This problem started all of a sudden. I hope I can fix this quickly because this is my professional email and if I end up not being able to read emails from prospective employers, I will be very angry.

    original title: problem with hotmail.

    Hotmail is part of Windows Live takes Center, not here in the Forums answers MS.

    Please repost to Hotmail Forums - son of Hotmail section:

    http://windowslivehelp.com/forums.aspx?ProductID=1

  • Hotmail does not properly in Firefox

    Hey people,

    This morning I can't open any messages or folders in Hotmail. It was working fine last night. Everything looks like normal (although I noticed that ads on the side load is no longer?) and messages appear in my Inbox as usual. However, if I click on messages in the Inbox or you try to select another folder on the left, there is no error messages or pop-up windows, everything that happens is literally nothing. The message looks like it is selected in the Inbox link when I click on it, but it never loads... the same browser never shows that load the folder or message. Browser is Firefox 12. It works fine in Internet Explorer (which I hate).

    I tried on three different computers, two running Windows XP Professional with SP3, with Windows 7 Ultimate 64 bit with SP1, all three 12 of Firefox running. Hotmail works very well with them in IE, but not Firefox. Tested also 12 of Firefox on a machine of Puppy Linux 5.28 with Hotmail and who has worked surprisingly well.

    I tried to clear the cache and cookies completely and Hotmail still not working properly... I think remember me something like this is happening before, but I don't remember how I got it... all other fixed sites on work computers perfectly, only Hotmail is acting weird and has been doing for 4 hours about now.

    .. .anybody have thoughts?

    EDIT - I should also mention that I does no update, no plugins installed addon or whatever it is in no way changed since it has been changed to work properly on all computers.

    EDIT #2 - I tried to start Firefox in Mode safe mode with all disabled... same question, Hotmail does not work.

    Please read this thread:

    https://support.Mozilla.org/en-us/questions/926740

  • I don't know how I can attach files and photos, but now hotmail does not work, click on attach ways and nothing happens, I use hotmail, firefox, vista, hp. Please help me

    but now Hotmail does not work, I can't join because the browser will not open click on attach ways and nothing happens, I use hotmail, firefox, vista, hp. Please help me

    Hello

    for Firefox questions, ask in their forums:

    http://support.Mozilla.com/en-us/forums

    _____________________________________________________

    Hotmail questions:

    I'm sorry, but we cannot help with hotmail problems in these forums in response to vista

    Please repost your question in hotmail in the hotmail link below forums

    http://windowslivehelp.com/product.aspx?ProductID=1

    Forums
  • Hotmail does not save my e-mail address and password from one session to the other

    original title: record the address hotmail and password

    Hotmail does not save my e-mail address and password from one session to another even if I check the boxes to remember my email address and password. Why didn't hotmail is no longer remember my info?  How can I fix this?

    Hello

    I'm sorry, but we cannot help with hotmail problems in these forums in response to vista

    Please repost your question in hotmail in the hotmail link below forums

    http://windowslivehelp.com/product.aspx?ProductID=1

  • BlackBerry Z10 BlackBerry Desktop Software does not support the BlackBerry 10 operating system

    I am wanting to sync the Z10 with my Mac andhave times link BB and BB Desktop Software but the message it gives me is:

    This BlackBerry device running the BlackBerry 10 operating system.  BlackBerry Desktop Software does not support the BlackBerry 10 operating system. Visit www.blackberry.com/support to learn more about how to synchronize your multimedia files, backup and restore data from the camera and more, with your device.

    All software are up to date on Mac and BBZ10

    What should I do?

    You have the two desktop software and link configurΘ for dΘmarrer when a device is connected to your Mac. You must go into the Desktop software settings (I don't remember exactly what to do, but there should be some settings at the top right) and set it to not open when a device is connected. Once you have it set to not open when your phone is connected, make sure that the link is set to open. That should solve your problem.

    Let us know if that helps you.

  • Since Firefox updated to 23, Hotmail does not display correctly

    Firefox itself up-to-date version 23 and since Hotmail does not appear correctly. I tried in IE and Chrome, and that's fine. I tried troubleshooting suggested, but nothing has worked.

    You can try the basic steps like these in case of problems with web pages:

    Reload Web pages and ignore the cache to refresh potentially stale or corrupt.

    • Hold down the SHIFT key and click the Reload button
    • Press 'Ctrl + F5' or 'Ctrl + Shift + R' (Windows, Linux)
    • Press 'Command + shift + R' (Mac)

    Clear the cache and cookies from Web sites that cause problems.

    "Clear the Cache":

    • Firefox/tools > Options > advanced > network > content caching Web: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Firefox/tools > Options > privacy > Cookies: "show the Cookies".

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/Firefox/tools > Modules > appearance).

    • Do NOT click on the reset button on the startup window Mode without failure.
  • I would like to know why my hotmail does not work

    I would like to know why my hotmail does not work

    Rex

    I think it might be a problem with Hotmail right now because I have seen numerous amounts of threads, saying "cannot connect to hotmail. You could post your question Hotmail forums below and they will have probably more information about it.

    http://windowslivehelp.com/product.aspx?ProductID=1

  • Like most of the County I've found hotmail does not respond for the last 36 hours.

    Please help solve this problem (please don't refer me to the live team hotmail - they keep giving me the same instructions as I told them don't work).

    No one here can help you.  The Hotmail team must do.

    Hotmail does not work for me.

  • Hotmail does not load...

    my hotmail does not load up, just a blank page and its showing its busy. If anyone can help...

    Problems with Hotmail/Windows Live Mail are better managed by Windows Live experts, here:

    http://www.windowslivehelp.com/

    HTH

    If I brought you joy, vote! If I answered your question, click, propose as answer! > WT

  • BlackBerry BB Passport does not

    After trying to link my passport for the computer (iMac OS 10.11.1) using the Blackberry link, that does not, I contacted support service provider (No. BB support!) we have downloaded new software, which does not, now, I have a passport of non-working BB - nothing, just blinking red dot! Can someone help me with this?  Thank you

    If you can get guaranteed support, that sounds like the best approach at this point. It is always best to try to fix it yourself first, and I think it's an easy fix, but if you can't do it then you can not do. Good luck.

Maybe you are looking for

  • May 2nd Gen Moto G load wireless with QI?

    Hi all Just bought this phone to the United Kingdom. I have not really yet unfortunately but its on its way. Can someone please tell me if this phone supports (QI) Wireless charging? Currently use QI on my nexus products and love it. I also saw that

  • T61p as WiFi access point

    Hi all. I have no clue if I could make such a reflection with my T61p. I went through web pages describing step by step how to do such a thing - without success. Right now, I guess that there is a conflict with the dial-up connections - otherwise I d

  • Download driver not compatible

    Alps, pointing device not working, downloaded Update driver Synaptics specific for vista, tried to install pop up in Presario 700 C with vista, after installation says that this device is not compatible for vista. I downloaded some other updates from

  • WRVS4400N v2: why no new IPS files?

    I know that the IPS files didn't need to update that is often, but since then, there were not a single update since the June 3, 2010... Are we not due for an update?

  • Value UDF user not multiplication of database after creating user

    HelloWe have created 120 UDF to create the profile in IOM and published the sandboxes. (UDF created in the designer in the sysadmin console, add the UDF Create User page)The UDF do not appear in the database. But after creating user (which is a succe