BBM BBM always associate? Here is the solution, without formatting.

Sometimes, when we go to a new BB device or he put in place after a restore and opens the BBM, the latter says something like, "combining BBM with your e-mail address. The problem is that this process of association continues for weeks or months for some unknown reason. However, here is the solution whitch I discovered coincidedly.

1 - Go to settings > Date & time.

2 disable both "Auto Update Time Zone" & "set Date and time automatically.

3. on the same page, change the date and time in the past, as the month before.

4 - Close BBM and restart your device.

5. after rebooting, open the BBM. He will tell you that time & date are wrong, and you will get an an exit button, press EXIT and close the BBM.

6 - reopen BBM; now, you have two options (output or switch BBM), choose "BBM Switch".

7. it will not associate with your email again, but this time, it should not take more of han of 30 seconds.

You're all set. Enjoy.

Let me know or hit as if it works for your device.

I spoke too fast, the user I messaged 6 hours later saying that BBM finally assocated. Looks like it worked after all!

Thanks for the fix!

Tags: BBM

Similar Questions

  • External hard drive does not work. Is there another way I could solve the problem without formatting the external hard drive?

    My external hard drive works. I tried to plug and when I tried to open it, it says to format the drive until I could use it. Everything works well as when I plugged the USB icon shown on the screen. When I check the disk management, it showed that the partition of the drive is there.

    I tried to change the drive letters, but still having the same problem. I also tried to run the disk check on the command prompt and the properties of the drive, but it still can not because there is error popping up saying that the disk check cannot be performed because Windows cannot access the disk.

    Is there another way I could solve the problem without formatting the external hard drive?

    I tried the first step in troubleshooting the hard drive, but it gives a
    error in saying that "hardware changes might not have been detected.

    So I tried the second method, and when I click on the "Check now" button his
    gives an error saying that "the disk check cannot be performed because .
    Windows can not access the disk".".

    So is there any other way or option?

    Thank you

    Jason

  • Cannot access files saved to the drive without formatting first on Windows 7

    I just reinstalled windows 7 on my computer, I saved all my files from before on a 2nd drive internal on my computer, now I can't access the drive without formatting it first, can you please help

    You can access the contents of the disc on another computer?

    If you can, do it and backs up your files then format the drive on the computer where you have reinstalled Windows 7.

  • Locale in the Cascades Momentics model code is broken. Here is the solution...

    The Momentics application, it is easy to start new projects by basing your new application on a predefined model. The problem is that the regional settings, change the code in the application model Cascades do not work properly and developers who don't understand this will serve strings bad language to their users. The locale of the model code looks like this...

    void ApplicationUI::onSystemLanguageChanged() {    QCoreApplication::instance()->removeTranslator( this->_translator );
    
        // ---Initiate, load and install the application translation files.
        QString locale_string = QLocale().name();
        QString file_name = QString( "AppName_%1" ).arg( locale_string );
        if ( this->_translator->load( file_name, "app/native/qm" ) ) {
            QCoreApplication::instance()->installTranslator( this->_translator );
        }
    }
    

    The problem is that QLocale () .name () returns the region code by DEFAULT to the language setting of the user device, ignore the region on the device setting. For example, with the language set to English device and the region set to 'United States (English)', 'United Kingdom (English),' "(English) Canada" or "Australia (English)", QLocale () .name () will ALWAYS return en_US. Similarly, with the device language set to French, and the region, the value 'Canada (French)', QLocale () .name () will return en_US, not fr_CA as it should. It is behavior actually expected QLocale, not only in the Cascades, but in Qt ordinary too.

    The solution is simple. Rather than QLocale () .name () you use QLocale::system().name() instead, which fills a QLocale with the setting of the unit in the region, not only the language CORRECTLY. The code above should be...

    void ApplicationUI::onSystemLanguageChanged() {    QCoreApplication::instance()->removeTranslator( this->_translator );
    
        // ---Initiate, load and install the application translation files.
        QString locale_string = QLocale::system().name();
        QString file_name = QString( "AppName_%1" ).arg( locale_string );
        if ( this->_translator->load( file_name, "app/native/qm" ) ) {
            QCoreApplication::instance()->installTranslator( this->_translator );
        }
    }
    

    I suspect that there are hundreds of BB10 apps out there using the code of the default model where developers can't read the languages that they located, and so they do not realize that French Canadian users get the Parisian French translation, for example. It's not so bad with English, French, Spanish, etc., where variants are close enough to the base language, but the regional variants of Chinese are in fact completely different languages.

    In any case, type a few extra characters in a single line of your application code will solve this problem. Now if only we could get the Momentics model updated with the hotfix.

    After I posted the original explanation in this thread, I realized that handling locale of the waterfall model is still more broken that I realized the original. I noticed that, although incomplete, the model code would address changes for the system language settings, but he completely ignored changes in the region during the execution of the application. My original fix the problem repairs where the region has been completely ignored, but she does not answer that becomes the region while the application is running has no effect on the text displayed in the application.

    This means that if the user changes of American English in the English-speaking Canada, while the application is running the application will continue to display American English until it is restarted. It's particularly bad, if the system language is Chinese, as changing the region can result in a totally different language. It has proved to be more sensitive to this problem than I expected, but here's what you need to do to make your application respond to changes in the region put in too.

    The first thing to know is that there are two LocaleHandler classes in Cascades, and they perform different functions related though. One that is used in the model code is defined in , but one that we must manage changes in region is defined by . The fact that we have two classes with the same name in our application means that we explicitly specify that we speak and cannot if press "using namespace" condense our code.

    It's the language Manager changed the system (including the difficulty I described above)...

    void ApplicationUI::onSystemLanguageChanged()
    {
        QCoreApplication::instance()->removeTranslator(m_pTranslator);
    
        // Initiate, load and install the application translation files.
        QString locale_string = QLocale::system().name();
        QString file_name = QString("AppName_%1").arg(locale_string);
        if (m_pTranslator->load(file_name, "app/native/qm")) {
            QCoreApplication::instance()->installTranslator(m_pTranslator);
        }
    }
    

    Let's change this code to that...

    void ApplicationUI::onSystemLanguageChanged() {
        this->setLocale( QLocale::system().name() );
    }
    
    void ApplicationUI::onRegionChanged() {
        bb::system::LocaleHandler* localHandler = qobject_cast( sender() );
    
        this->setLocale( localHandler->locale().name() );
    }
    
    void ApplicationUI::setLocale( const QString& locale ) {
        QCoreApplication::instance()->removeTranslator( this->_translator );
    
        // ---Initiate, load and install the application translation files.
        QString file_name = QString( "AppName_%1" ).arg( locale );
        if ( this->_translator->load( file_name, "app/native/qm" ) ) {
            QCoreApplication::instance()->installTranslator( this->_translator );
        }
    }
    

    He must also change the code in the constructor of ApplicationUI of this...

    ApplicationUI::ApplicationUI() {
        // prepare the localization
        m_pTranslator = new QTranslator(this);
        m_pLocaleHandler = new LocaleHandler(this);
    
        bool res = QObject::connect(m_pLocaleHandler, SIGNAL(systemLanguageChanged()), this, SLOT(onSystemLanguageChanged()));    // This is only available in Debug builds    Q_ASSERT(res);
    }
    

    .. .for this...

    ApplicationUI::ApplicationUI() {
        // prepare the localization
        m_pTranslator = new QTranslator(this);
        m_pLocaleHandler = new bb::cascades::LocaleHandler(this);
    
        bool res = QObject::connect(m_pLocaleHandler, SIGNAL(systemLanguageChanged()), this, SLOT(onSystemLanguageChanged()));
        // This is only available in Debug builds
        Q_ASSERT(res);
    
        bb::system::LocaleHandler* systemLocaleHandler = new bb::system::LocaleHandler( LocaleType::Region, this );    success = QObject::connect( systemLocaleHandler, SIGNAL( changed() ), SLOT( onRegionChanged() ) );    Q_ASSERT( success );
    }
    

    Once you have made any changes your app will meet changes in the region and the language system changes. Note that I don't provide code so that changes to the ApplicationUI.hpp to support the changes above, but rather than leave it to the reader.

  • Autonomy of the batteries? Here is the solution!

    Most of the battery power goes to your connection 3G / 4G, GPS, WIFI and Bluetooth. You can turn off GPS, WIFI and Bluetooth, but the only way to disable the phone data is airplane mode and that will kill all data set.

    The solution? Juice Defender. You can find it on the market. It controls your data connection stopping when the screen turned off, allowing every 15 minutes to let email and other background internet access applications, then it turns off it back. When you turn on the screen, it allows the data until you close the screen to reverse. The PLUS version does the same thing with your WIFI connection as well. A value of $2!

    The results? Today my RAZR with moderate consumption is still 60% battery after 12 hours! Without this app I would be ready for a charge at this stage. Sure I could get 24 hours free of charge now.

    Setup is a breeze. Install the application, choose balanced and active. That's all! Another thing, I changed a uncheck DATA under the ABOUT screen, turn off the WIFI. If you don't do this then you might find that MMS messages do not download correctly.

    Sit and enjoy double the battery life!

    Mike

    PS no, I don't work for this company. It's just a great farm solution!


  • Cannot install the solution without CD Center

    When lights in my office, I got a message that the Solution Center cannot be installed because I need the CD for it.  I do not know what CD I need.  Can someone help me with this problem?  And is it related to Microsoft or another program?  I have Vista Home Premium with Service Pack 2.

    http://h30434.www3.HP.com/T5/other-notebook-PC-questions/Solution-Center-disk/m-p/13153

    Read the information above.

    It is a problem with the HP software.

    Contact HP,

    See you soon.

    Mick Murphy - Microsoft partner

  • Wireless problem Compaq Presario CQ62 220 sv here is the solution! for 220 sv!

    Hi, I need help! Fast please I have a compaq presario CQ62 and do not work wireless

    I installed the driver for the wireless, but do not work

    is a BIOS problem? or anithing alse

    Please I need help! Fast!

    Thanks, Alex

    Sorry for my bad English!

    FAST!

    Update > I enter the device maneger and network controller is not installed

    Hardware ID >

    PCI\VEN_10EC & DEV_8171 & SUBSYS_1467103C & REV_10
    PCI\VEN_10EC & DEV_8171 & SUBSYS_1467103C
    PCI\VEN_10EC & DEV_8171 & CC_028000
    PCI\VEN_10EC & DEV_8171 & CC_0280

    Hello

    First of all, download and reinstall the Chipset driver from the link below.

    http://ftp.HP.com/pub/SoftPaq/sp46501-47000/sp46940.exe

    When this has completed, restart the laptop.

    When windows has completely recharged, download and install the Realtek WLAN driver at the following link.

    http://ftp.HP.com/pub/SoftPaq/sp46501-47000/sp46673.exe

    Kind regards

    DP - K

  • How to associate technicality to the MASTER, without creating a new item in DETAIL?

    Here's my problem. I created a page of form master / detail with master SalesOrder and detail as a product. The two tables are one of several relationships. SalesOrder is one, produced, it's a lot. In the database there already many products, for example, pencil001.

    Now what I want, it of that when I add a line and type in pencil001 in the area of retail and click "Add a line" in the area of retail, or 'Apply changes' in the master region, pencil001 must be associated with this new order. But now that it does, is that it creates an another "pencil001" in my PB. So now, there are duplicate values in my table. It is definitely fake.

    I wonder if I said clearly. I want to know how to solve this problem. Or other type of page that I use? Thank you!

    You need to review the concept of a form master detail. When you add a line in the detail he adds a line in your designated detail table.

    You need to a.) Add another table to hold the records in detail for your orders or B.) make your table orders that can contain several lines for each order (I wouldn't suggest option B)

  • make the partition without formatting drive and made game like left4dead affecting the windows program?

    When I play left4dead, it freezes and stop smoking... I ask some friend they said I should do a partition because it affects the program.some of windows told me that the video card is low... I have an acer aspire 4741, graphics card intel HD up to 762 MD DVMT and 320 HARD drive and there is no partition... is not enough to have a gudtime to kill the zombies?

    Thank you...

    Hi dand0y,

    1 when was the last time it was working fine?

    2. you receive an error message?

    In most of the released games are caused due to corrupt or outdated video card drivers.

    Method 1

    I suggest that you visit the video card manufacturer's website download and install latest driver package control if it works.

    Updated a hardware driver that is not working properly

    http://Windows.Microsoft.com/en-us/Windows7/update-a-driver-for-hardware-that-isn ' t-work correctly

    Method 2

    Intel® graphics performance analyzers to check the performance of the game.

    http://software.Intel.com/en-us/articles/Intel-graphics-performance-analyzers-quick-start-guide/

    For more information send your query on the site of the game.

    https://support.steampowered.com/

    http://store.steampowered.com/forums/

    I hope this helps!

    Halima S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Firefox 7 is slow loading web pages (more than a minute and I let it go, but I went and they finally loaded) and IE their charge quickly. I tried all the solutions aid without change. I disabled Norton without change. I am running Windows 7.

    When I restarted in safe mode, everything worked fine, so I disabled the Add-ons and plug-ins, one at the time but could not find one any of them causing the problem.

    I had the same problem and found the solution here here

    The solution involves going to about: config and change "Network.http.Max - connections" line value between 256 and 48

  • How can I change the permission of my external hard drive from tours and write "without formatting?

    My Toshiba external hard disk format was automatically replaced Windows NTFS after I had plugged on a Windows PC. Therefore, the permissions of the drive changed to 'read only' to "read and write" after that I used on my Mac. It happened once before and I remember the engineer on duty in an apple authorized service center had solved the problem without format the external hard drive. This is not an option for me now as well, but all the solutions, I looked to say online that the formatting of the disc is the first step. Help, please!

    Install software such as Paragon NTFS on the Mac.

    (139384)

  • BlackBerry Z10 can BES5 "BOLD" BBID (BBM) be reconfigured to use the Z10 BIS?

    As far as I can tell, it's a delicate issue...

    I used a Bold 9900 for work, managed by our BES5 servers.  Also used the phone for personal use, including BBM contacts.  I need is no longer to use the 9900 for work so decided to get a Z10 for personal use.

    Company does not have BES10 so I took a conscious decision to get a personal phone that wouldn't be synchronized with desktop systems.

    I had originally used the migration tools Office set up my personal Z10 with the contacts, calendar, etc. of my company 9900.  Everything transferred very well, with the exception of BBM, as it took my BB ID, which is managed by the company BES5 server to connect my device ID 9900's at my work email address.

    I worked my departmental support of BES, but I am not convinced that they are able to get my BB ID extracted their BES server.  Y at - it none confirmed so that I can get my existing (old 9900) BBM (BB ID) setup on my Z10, or what I have to wipe completely and start again with a new ID of BB?

    The wisdom of any guru will be immensely appreciated!

    THX...

    Sorry for not following up earlier...

    Thanks for the link - it was PART of the solution.

    The other missing piece was weird and may be difficult to explain:

    (2) after the update of my BB ID ID (email address) as suggested above, I made my Z10 was on WiFiand re-tried my BBM configuration.  Via WiFi, installing BBM surveys has been able to connect and complete.

    Apparently the WiFi allows the service to bypass my cellular provider (Rogers).  Without WiFi, the service routes through Rogers - and since my old profile was registered (rightly) as BES managed, he tried to forward the request of my BES company, who would not allow.  With WiFi, my phone is directly connected to the Blackberry, gets his BB ID, and (apparently?) - pushes the update to the Rogers BIS servers.  At least that's what seems to be the case...

    No matter what the actual technical problem, it seems that for me to get my old BBM servers of our company BES5 ID, use the WiFi to complete the migration was critical.

    Hope this helps others in the future.

    See you soon...

  • BBM No. BBM Notification when running in the background, apps WP8.1

    Hi all

    Since this weekend, I don't have any notification on my 8.1 Windows phone. I checked on my battery saver, and everything is enabled for BBM. My friend has the same problem on WP.

    I do not see the application of Notification + Actions, but I don't know if it was here before...

    Thank you

    Started getting notifications again from this morning, and BBM is in stock + Notifications. Thanks to the one who fixed it!

  • Integration of BBM to update status when the user has not created BBM

    Hello

    We have integrated the update of the status of BBM in our application.

    When the user opens the application they are requested permission to allow the application to access the BBM.

    Then, there is an alert message which says that BBM implemented is necessary to connect to the app with options to cancel or continue.

    If a user cancels out of the aler, they can always proceed through the app, but when they get to the point where they can hit a link to update their status, that nothing is happening.

    I want to know how to do is that if somebody hits cancel rather than implementation of surveys BBM can we set a flag to hide the update status BBM feature?

    Seems a bit odd to require someone to set up BBM but let them still cancel and run the application.  Aware that this should be handled but don't know where to do

    BBM must be installed before an application can complete the BBM registration process.  If they cancelled out of this process, you will get a value of successful registration.  You must activate the features BBM of your application after a successful registration.

    We still allow the user to run the application, because they may not want to configure BBM, but continue to use the application.

  • I'm afraid to do the last update because in the past when I update, I always lose something. The last time it was my tabs "pinned". What is the solution?

    I'm afraid to install the last update, because in the past when I update, I always lose something. The last time it was my tabs "pinned". What is the solution?

    No, they are not the same. You really need to put more emphasis on messages displayed by editors / moderators / Admins who have extensive validation "under their belt.

Maybe you are looking for

  • Term of ART

    When I change the runtime to art the phone reboots (as usual) but when it starts there always davlik. The phone is rooted.

  • How to remove unwanted picture and Fax Viewer images?

    There are a lot of unwanted in the Picture and Fax Viewer images, but I can't find a way to remove them.

  • DMI. EXE Application error when you try to reinstall Windows Vista

    I have a Toshiba A215 S7422 and I need to re - install Windows Vista.  When I try a complete reinstall, I get the message that there is a DMI. EXE Application and program error Stops the computer.  How can I get Windows Vista re-installed on this mac

  • No support for URI Scheme Expressway C

    Nice day!! A question that I have the next deployment Cluster Version 11 - Expressway CUCM C - Expressway E - Webex I realized the Collaboration meeting room guide and other deployments work but in this crackling SIP does not work. Areas - transforma

  • WiFi is not a valid ip configuration

    UGH! I have a Lenovo X 1 atom of carbon with Windows 8.1. I can no longer connect to my WiFi at home and I get the error message on the WiFi not.having a.valid ip configuration. I tried all kinds of patches (update drivers, reboot the router, etc.),