Idea of blackBerry 10

Dear BlackBerry, I have a suggestion for a new phone, you guys could do. You courage could do a 10 BlackBerry with two entries from sim card.
You guys will not fail to reclaim your cushion if your devices can accommodate two sim cards

Their reason why backup you all your contacts on a computer so that if your sim card wouldn't you have a return upwards

Tags: BlackBerry Smartphones

Similar Questions

  • Ideas of blackBerry Smartphones to improve my battery life standby

    I am a long-time user of BB - having previously had the curve and versions "BOLD". I just upgraded to the new OS7 Torch 9810 and found a difference in the time of Eve. I used to do a day - sometimes 2 days the battery life on my "BOLD" but now find with use limited - it's only a duration to the 5 better hours.

    I tried all the tips - reduced, made sure wireless screen brightness and bluetooth is deactivated, removed all older apps, closed all applications. Still say 2 texts, 2 Summary of calls and receipt of 20 emails a day (without opening attachments) - I still not only 5 hours! Can anyone suggest other ideas please because I don't want to resort to buying a spare battery, but the nature of my work takes me charges battery all day

    On device, go to Options, device, application management is a great way to see what your applications with your use of the CPU on #Torch. Simply drag bar greater than CPU and see what happens. Also touch the CPU menu to see other time variables. I discovered that an application has been eroding CPU cycles on my own

    Also power off of Compression Option, device, storage can help too.

    I guess you did a sweater batttery?

    Try a battery pull if you please, with the BlackBerry device powered on, remove the battery 15 seconds and then reinsert the battery to reboot the device. This will clear all hide as restarting a PC. Then try again and see if the problem persists.

  • If register with RIM signing do not work correctly in QNX Momentics IDE®

    Hello

    I reveiced files of the SJC. ® For QNX Momentics IDE, I open the preferences-> BlackBerry Tablet OS-> signature - > save.

    I complete the form with the SJC, pine files and passwords. When I submit the form, everything is ok and I receive an email to confirm that I am registered.

    But the problem is when I restart QNX Momentics IDE®, BlackBerry Tablet OS->-> RIM signing authority signature it says "saved: No.

    If I try to record again, QNX Momentics IDE® say that I'me is already registered, and I need to contact RIM to add another user (I don't want to add another user).

    Someone had the same problem? How to fix this?

    Best regards

    System Specs:

    Windows 7 32 bit under parallels on Mac OS x 10.6.8 6.0.12090

    ® For QNX Momentics IDE for BlackBerry® native SDK for Tablet OS Version: 1.0.0 Build id: 201110112127

    There is a bug in NDK 1.0 with localized Windows versions and the signature. This bug has been fixed in NDK 2.0, which should be published very soon. You can also use the beta version 3 If you can't wait for the release of the NDK 2.0 GA.

    Unfortunately, you will need to ask new SJC files and resave.

  • Cannot create tool for BlackBerry 10 NDK questions in Issue Tracker

    When I try to create a bug of the tool in the Issue Tracker, it application device, version, version of the app, etc. If I enter IDE of the BlackBerry 10 NDK (10.0.4.201204250810), I said that it is an invalid version and will not be present. With respect to the device, it's an IDE, not a device. So I'm not sure how to submit these bugs.

    Any ideas?

    OK, it was much longer, so I wanted to (been busy), but finally, I introduced the (now seems in charge the BB10 IDE):

  • How to create the method own slot in QT for blackberry Playbook

    Hi all

    After two days of work-around, I can successfully develop the project of the QT in Qnx IDE for blackberry playbook 2.0.

    But now I have a problem to create the method of the slot to call on the click event of the specific button,

    Here is my code.

    #include

    #include
    #include
    #include
    #include

    slots machines
    void clickedSlots();

    int main (int argc, char * argv []) {}

    qputenv ("QT_QPA_FONTDIR", "/ usr/fonts/font_repository/monotype");
    QCoreApplication::addLibraryPath ("app/native/lib");
    QApplication app (argc, argv);

    QWidget window;
    Window.Resize(1024, 600);
    window.setWindowTitle (QString::fromUtf8 ('QPushbutton Background'));
    one click = new QPushButton ("Click Me");
    Click on-> setToolTip ("Thanks");
    Click on-> setMaximumHeight (100);
    Click on-> setGeometry (400, 100, 100, 40);
    QObject::connect (click, SIGNAL (clicked ()), & app, SLOT (clickedSlots ()));

    QPalette * palette1 = new QPalette();
    Palette1-> setColor (QPalette::Button, Qt::blue);
    Click on-> setPalette(*palette1);

    QPushButton * leave = new QPushButton ("Quit");
    QObject::connect (quit, SIGNAL (clicked ()), & app, SLOT (quit ()));

    QPalette * palette2 = new QPalette();
    Palette2-> setColor (QPalette::Background, Qt::green);
    Exit-> setPalette(*palette2);
    Exit-> setGeometry (200, 100, 100, 40);
    QVBoxLayout layout = new QVBoxLayout (& window);
    layout-> setGeometry (QRect (0, 0, 1024, 600));
    layout-> addWidget (click);
    layout-> addWidget (quit);

    Window.Show ();
    Return app.exec ();
    }

    void clickedSlots() {}
    QMessageBox msgBox.
    msgBox.setWindowTitle ("Hello");
    msgBox.setText ("You Clicked");
    msgBox.show ();
    msgBox.exec ();
    }

    Please help me with this problem. I had started to develop in QT before 2 days only. I'm not familiar with the development of QT.

    Thanks in advance.

    bskania.

    You have the chance, I'm feeling generous today.

    I fixed your code. You should really read the Qt documentation, it's fantastic. Here, it's a good start for the signals and Slots.

    http://Qt-project.org/doc/Qt-4.8/signalsandslots.html

    Mark this message as the solution and give me one as you please.

    main.cpp

    #include 
    
    #include 
    #include 
    #include 
    #include 
    #include "myslots.h"
    
    int main(int argc, char *argv[]) {
        qputenv("QT_QPA_FONTDIR", "/usr/fonts/font_repository/monotype");
        QCoreApplication::addLibraryPath("app/native/lib");
        QApplication app(argc, argv);
    
        QWidget window;
        window.resize(1024, 600);
        window.setWindowTitle(QString::fromUtf8("QPushbutton Background"));
        QPushButton *click = new QPushButton("Click Me");
        click->setToolTip("Thanks");
        click->setMaximumHeight(100);
        click->setGeometry(400, 100, 100, 40);
        myslots a;
        QObject::connect(click, SIGNAL(clicked()), &a, SLOT(clickedSlot()));
    
        QPalette* palette1 = new QPalette();
        palette1->setColor(QPalette::Button, Qt::blue);
        click->setPalette(*palette1);
    
        QPushButton *quit = new QPushButton("Quit");
        QObject::connect(quit, SIGNAL(clicked()), &app, SLOT(quit()));
    
        QPalette* palette2 = new QPalette();
        palette2->setColor(QPalette::Background, Qt::green);
        quit->setPalette(*palette2);
        quit->setGeometry(200, 100, 100, 40);
        QVBoxLayout* layout = new QVBoxLayout(&window);
        layout->setGeometry(QRect(0, 0, 1024, 600));
        layout->addWidget(click);
        layout->addWidget(quit);
        window.show();
        return app.exec();
    }
    

    myslots.h

    #include 
    #include 
    #include 
    
    class myslots : public QObject {
        Q_OBJECT
    
        public:
            myslots() { };
    
        public slots:
            void clickedSlot() {
                QMessageBox* msgBox = new QMessageBox();
                msgBox->setWindowTitle("Hello");
                msgBox->setText("You Clicked " + ((QPushButton*) sender())->text());
                msgBox->exec();
            };
    };
    

    myslots. Pro

    TARGET = myslots
    DEPENDPATH += .
    INCLUDEPATH += .
    HEADERS += myslots.h
    SOURCES += main.cpp
    

    Put all these files in the same folder, run qmake in there, it will produce a Makefile. Run make and it comes out a binary executable called myslots. That and your code works.

    I don't have a lot of changes, I'll let you step through the code yourself to find out what I did. Look at the documentation for help.

    I have not tested this Momentics, nor Alpha PlayBook/Dev. But I'm 100% sure the code works, since I ran it myself.

  • BlackBerry Q10 Mark emails transferred / replied:

    I bought a blackberry after using android for a long time, as I thought that blackberry is a more powerful tool for emailing etc.

    On my Q10 (OS 10.2) I was surprised that emails do not get marked as 'deflected' or the 'answers '. I could work around this problem by using the mode of conversation which also shows my forwarded e-mail messages or responses, but I'm the synchronization with Outlook and Thunderbird and it would be extremely useful see what emails, I have already answered or if I've already passed.

    How this feature be turned on, and if it is not available (as several articles suggest), how blackberry could miss this essential characteristic of e?

    All advice is greatly appreciated!

    It is maybe not enough, but that's how. I have no idea why BlackBerry has never added the feature.

  • Eclipse Simulator GPS Blackberry 4.7 problem

    I try to work with the latest Eclipse IDE of Blackberry plugin and 4.7 component pack. Unfortunately, the component pack is well exceeded (4.7.0.46) and setting the GPS does not work. Any idea on how to get this working in Eclipse? Copy the 4.7.0.75 Simulator in the plugin does not work.

    I'm not sure, but after installing the latest Simulator, you can see the new Simulator in the eclipse by choosing... Run-> Run Configurations-> BlackBerry Simulator-> debug-> Simulator server... In this window you will see 'profile', in which your newly installed Simulator will also appear... You can choose that instead...

    Thank you!

    We can mark this as resolved issue

  • BlackBerry Smartphones Gmail not gettung Setup / handset not recognized by Google

    Hello

    I'm new to BB and just got a second hand Bold 9900, having the idea of Blackberry.

    I encountered some problems while creating my Gmail for email account. Would really appriciate if someone could help me with this problem.

    My Blackberry ID is connected with my Gmail account. I have install the handset with the BB ID without any problem. (As I know). To configure the functions of e-mail, Bold 9900 automatically recognized my Email and asked to provide the password. I did, but got an error saying (E-mail address or the password is worng, if this error again communicate with Google).

    I tried to configure Gmail again and it I got the same error. * (My password is correct because I can connect to gmail from the browser)

    Then I tried my Yahoo account. It worked perfectly. No problem at all.

    I received an email warning me of an unauthorized access to my Gmail from Google. It seems as if I was trying to log in South Africa. Some how my unit has not recognized when he was, I'm living in Germany however.

    In the settings of my location, I have a correct address. My GPS works fine.

    I don't understand this problem together. This is why I can not solve.

    * (Since it isn't possible to install Gmail App on the OS 7.1, I don't know how to go further)

    Thank you.

    The IP address of South Africa is normal when you use the BIS in Europe. Not to worry it.

    As for GMail, I guess you use two-step verification in GMail and you will need to configure a specific to use app password to connect.

    https://support.Google.com/accounts/answer/185833?hl=en

  • BlackBerry Smartphones comparing memory on "BOLD" for iphone: (?)

    The "BOLD" website lists: in addition to 624 MHz Intel procesor by Marvel (compared to 312 MHz), it lists flash 128 MB and 1 GB on-board memory and a slot for up to 16 GB more.

    The iphone site lists: it just says 8 GB or 16 GB flash.

    I do not understand the difference.  I think that the world of office in what concerns the hard drive and Ram.  I guess, but don't know, as smart phones like these use something similar to this, but given that two Web sites use exactly the same terminology I do not know how to compare.

    (1) the data above means that the iphone has much more available memory? (After all, 1 GB of flash is much more than 128 MB flash)

    (2) or maybe its apples and oranges and the 8 GB or 16 GB iphone capacity memory simply alluded without actually it indicating the location available for additional memory, so in reality is the same thing as the "BOLD"?  (But if its what so what's onboard memory iphone to compare with the 1 GB onboard memory referenced to the "BOLD"?)  And what is the comparison of the iphone for flash 128 MB?)

    (3) for the basic understanding, is the 128 MB of flash to the "BOLD" actually the RAM I think of a desktop computer, and if yes, what is the on-board memory of 1 GB?

    Can someone clarify all above and in particular specify them the appropriate comparisons with the iphone and not only on the question of memory, but also what is the processor of the iphone and the speed of the processor?

    Thank you.  The supposed November 4, 2008 U.S. retail release date is almost here.  I really hope that many folds referenced on this forum are addressed in this new phone.

    ncg61 wrote:

    The "BOLD" website lists: in addition to 624 MHz Intel procesor by Marvel (compared to 312 MHz), it lists flash 128 MB and 1 GB on-board memory and a slot for up to 16 GB more.

    The iphone site lists: it just says 8 GB or 16 GB flash.

    I do not understand the difference.  I think that the world of office in what concerns the hard drive and Ram.  I guess, but don't know, as smart phones like these use something similar to this, but given that two Web sites use exactly the same terminology I do not know how to compare.

    (1) the data above means that the iphone has much more available memory? (After all, 1 GB of flash is much more than 128 MB flash)

    Hello, you shouldn't think if conditions of RAM (RAM) / WORM (hard drive), but in terms of xxxx. On Blackberry devices, you have a partition for the system & applications (called "Internal memory"): it's the 128 MB on the "BOLD". On it, you hold:

    • The PIM applications: email, notes, address book, calendar, tasks and notes
    • Phone applications: SMS/MMS, browser, speech recognition
    • Third application Opera Mini, games and each application you want to download
    • the RAM as you understand it, on a computer

    Then you have an additional memory card (also called Media card), 8 MB up to 32 GB, which can contain all other things: photos, videos, mp3, Office & PDF files. It is equivalent to the non-system partition.

    On the iPhone, the two briefs are merged.

    On the Blackberry, there is a third party application that allows to store applications on the memory card and load them onto the internal memory before using it.

    ncg61 wrote:

    (2) or maybe its apples and oranges and the 8 GB or 16 GB iphone capacity memory simply alluded without actually it indicating the location available for additional memory, so in reality is the same thing as the "BOLD"?  (But if its what so what's onboard memory iphone to compare with the 1 GB onboard memory referenced to the "BOLD"?)  And what is the comparison of the iphone for flash 128 MB?)

    It is quite difficult to compare the two:

    on the iPhone, you have a powerful processor somehow, which is crippled by a lot of your operating system (it's OSX for Mobile, but always OSX). On a Blackberry, you have a CPU less powerful, but with an operating system designed for a handheld device.

    On an iPhone, an application is large enough. It is very rare to find one that is less than 1 MB.

    On the blackberry, it's the opposite: the applications are smaller.

    On an iPhone, you can not get an application that has not been approved by Apple Inc. (unless you jailbreak your iPhone). On a blackberry, you can get any app that someone publishes. Including porn.

    On an iPhone, if I want to develop an application, I have to pay a tax of $100 AppleInc; If I did not, then my application can be downloaded by jailbroken iPhones. On a Blackberry, I don't pay anything. I just publish it somewhere on the web. I'll give you a very specific example: Opera Mini is one of the most beautiful browser for mobile phones. Apple has refusedto got it publishedso no one can use it on an iPhone (except the jailbreak).

    Another very concrete example: If you pay $100 and prepare your application, if Apple refuses, then you have the eyes to cry: you've lost time (and perhaps money to hire developers) and you cannot be assured that you can sell.

    Another example: say, you sell an application. It is 10EUR. If the consumer is not happy with it, they can return it. In this case, he or she gets the return of 10EUR. Fine for him or her. But continues to Apple the transaction fees, which means or do not get the return 10EUR but 10EUR less standard fees from Apple (it's to a few % but I don't know how).

    the result is twofold:

    on the one hand, there is a trend that everyone wants to develop for Apple

    on the other side, Apple is doing everything to rot the lives of these people.

    But Apple's App Store is a good idea, and Blackberry has just made an announcement about a same store for Blackberry users.

    I just got a curve, so I'm not even interested in looking at the most advanced mobile devices with touch screen, but I think you should try both for real and not just look at the numbers. There are also some exclusive features to the iPhone: link to the iTunes music store and iPod it contains. and others that are exclusive to the "BOLD": stereo Bluetooth, copy/paste and total synchronization with Outlook (emails not only).

  • Error in deployment of Simulator for the 10 Blacbkerry 'synchronization and application launch.

    I use Momentics® IDE for BlackBerry Version: 2.0 Build id: v201310251603 with Simulator10.1.0.4828.

    Momentics seems to connect and paired with success to the Simulator. When I click "Run", it starts the process of packaging and deployment, but get the error in "synchronization and launch the application" part. There are different errors but no useful information in the dialog box. Here are two samples

    Failure of deployment: Info: failed to get a connection QConn, sync disabled
    Info: Sync disabled, packaging full bar required for installation
    Info: Sending request: INSTALL_AND_LAUNCH
    Info: Action: install and launch
    News: Native debugging: on
    Info: File size: 304312
    Info: Installing com.example.BB10TrackerSample.testDev_ackerSamplea7864132...
    Info: Treatment 304312 bytes

    #2

    Failure of deployment: Info: try using the synchronization failed: connection reset
    Info: Sync disabled, packaging full bar required for installation
    Info: Sending request: INSTALL_AND_LAUNCH
    Info: Action: install and launch
    News: Native debugging: on
    Info: File size: 304312
    Info: Installing com.example.BB10TrackerSample.testDev_ackerSamplea7864132...
    Info: Treatment 304312 bytes

     

    Please refer to this article for more information about this problem and a workaround.  Note that this problem is resolved in the new versions of BlackBerry 10.

    Application deployment can hang or fail after OTA update to 10.1

  • Question of debugger on Mac

    Hello

    I encountered the following problem. When I try to use the debugger, I get the following error:

    An internal error occurred during: "read the symbolic debugging information: leveltest.

    java.lang.NegativeArraySizeException

    The application is downloaded to the device, but it freezes on startup (with the blackberry logo) loading and then the error is displayed in the IDE.

    I use the following IDE:

    ® For QNX Momentics IDE for BlackBerry® native SDK for Tablet OS

    Version: 2.0.0

    Build id: 201202171813

    And Mac OS X 10.7.4. PlayBook is connected via WiFi.

    Everyone has the same problem?

    Thank you!

    Just tried to use the debugger if USB and it worked fine

  • Q_DECL_EXPORT error number

    I upgraded to 10.2 Gold through the native SDK.

    QNX Momentics® IDE for BlackBerry® 10 native SDK

    Version: 10.2.1
    Build id: v201308081807

    When I build the application and you are trying to debug in the Simulator (BB10_2_0X.1155), I will meet with the error at the main

    Q_DECL_EXPORT int main(int argc, char **argv)
    {
        Application app(argc, argv);
    
        // Create the Application UI object, this is where the main.qml file
        // is loaded and the application scene is set.
        new ApplicationUI(&app);
    
        // Enter the application main event loop.
        return Application::exec();
    }
    

    If I hit game to continue, I get all sorts of errors of the library and the soft rises, but the debugging console does not open debug information.

    I created the new application after the upgrade to 10.2.  And I get the same problem on a page simple app with certain text fields.  He is not much of a mistake on.

    I've seen some other posts about the error, but they were on the previous version, which I assumed 10.2 Gold would have set.

    What Miss me?

    Or do I need to uninstall the software development kit and start from scratch?

    Just use execute instead of debugging.

    I can see the output of the console in Run mode.

  • Why my editor QML doesn't show list predictive method?

    I once saw a video that shows the QML poster Publisher predictive when method list type '. '.

    But that does not show my editor QML. I have to manually check the API reference. Do you know how to enable this feature?

    My version of the IDE's® of QNX Momentics® IDE for BlackBerry® 10 native SDK Version: 10.0.9

    In addition, it can show the list of predictive methods in the RPC editor without problem.

    Thanks for helping me.

    CTRL + space

  • [ubuntu] No API found level. The new project wizard requires a level API to go forward.

    Hi all

    I run into a problem when you create a new project of stunts on the new ndk 10.2 released. As soon as I get to the level of the API, it says that not installed, but all are (10.0, 10.1, 10.2).

    I am running:

    Distributor ID: Ubuntu
    Description: Ubuntu LTS 12.04.2
    News Release: 12.04
    Codename: precise

    QNX Momentics® IDE for BlackBerry® 10 native SDK

    Version: 10.2.1
    Build id: v201308081807

    If someone has encountered this problem or knows a solution, please let me know. any help is appreciated.

    Thanks in advance,

    ampz9

    Solved by uninstalling the ndk (once more that I had tried several times) and instead of setting up the wizard, I downloaded the API level when creating my project of bb...

  • Packaging failure via mometics export-> release build, due to the run_when_backgrounded permission.

    Hello

    Whenever I try to package my request for signature and publication using momentics export-> Blackberry-> Release version, my packaging fails with the following error message: (bar file is created, but it cannot be installed on the device)

    Package failed: 2
    Info: Package created: /Users/deepak/bbcodebase/BB_App/arm/o.le-v7/myApp-1_0_0_1.bar
    [ERROR] MANIFESTO. MF: Invalid value 'access_location_services, run_when_backgrounded, access_shared' for the attribute "Entry-Point-user-Actions".

    Here is the excerpt of permissions that I use in my bar - descriptor.xml

    run_native

    run_when_backgrounded
    access_location_services
    access_shared

    When I delete run_when_backgrounded permission to my bar - descriptor.xml, packaging works correctly and the binary signed, I can install and run on my device.

    Without signing the application and using debugging tokens, I can install the debug version of my app (via momentics) and run it on the device with the permission of run_when_backgrounded without any problem.

    I developed a native BB 10 application, using the following configuration:

    SDK version: 10.1

    Feature: Q10 with 10.2.0.424 software

    Momentics® IDE for BlackBerry: Version: 2.0 Build id: v201310251603

    Development mode: on

    I need the permission of run_when_backgrounded for my application as some of the functionality that depends on.

    Request let me know what I'm missing here.

    Thanks in advance.

    Thank you sabdelsayed,

    I have upgraded my toolchain to 10.2 SDK and not observe this behavior. I forgot to update the community, an apology for this.

    Thank you all for help.

Maybe you are looking for

  • Windows 0 x 643 error code... regarding the installation of Microsoft Windows Update

    Get rror Code 0 x 643... regarding the installation of Microsoft Windows Update ===>>> update of security for Microsoft .NET Framework 1.1 SP1 on Windows XP, Windows Vista and Windows Server 2008 x 86 (KB2833941).  Have tried to install several times

  • ISE 1.1.2 - Customize Agent Package

    Hello I created a bunch of customization of the NAC Agent and sucsesfully downloaded the file 'custom.zip' in-policy > policy elements > results > ClientProvisioning > resources. However, when I try to change my strategy in customer service, and then

  • How can I pro DC Acrobat deployment?

    We recently purchased Acrobat pro DC, we are current using acrobat X pro, can someone let me know how can I spread the software up to 200 PC without having to do manual install.Kind regardsMoiz

  • Why LR CC continually trying to connect to the servers of amazon?

    The message continues to appear in the console and monopolizes the CPU usage. I have the connection of course blocked until further notice. Please advice!Thanks in advance.14/05/15 15:47:58, 928 adobe Lightroom [9091]: tcp_connection_destination_prep

  • Why yellow borders appear on most of the divs?

    Yellow divs appear on all except the second div.  "Check" shows the page in XML format along 1 says "comment expected or CDATA [xml] and line 2 says" an exception occurred! EmptyStackException type:, Message: the element stack is empty [xml] "when I