BB Simple question classic blackBerry

This is probably very simple... How can I change the color on the emails you write... I've implemented in blue which I think is standard... but who spend all the emails for black type... Please advise the steps required. Thank you

Hi @medrealestate

You can change the font color using formatting whenever you answer but you cannot change squarely so that it always uses a black font when replying. As it is the case I will capture your feedback for future review.

Thank you!

Tags: BlackBerry Smartphones

Similar Questions

  • Questions classic blackBerry Blackberry Classic compared to the features and functions of the Bold 9900

    I am extremely satisfied with the functionality of my Blackberry Bold 9900 and yet I am fun the idea of upgrading to a classic Blackberry and had a few questions, some of them functional, but one of them is technical:

    (1) I have granularily configured different contacts to the ring through "silent" while some people may sound through if I'm having a NAP or sleep. The classic allows you granularily configure the option of 'ring through' on a manually configured silent mode?

    (2) can the classic surely go to sleep and wake up one day of week / weekend schedule? My current phone doesn't sleep at midnight and wake up at 06:00 every night of the week and 02:00 to 09:00 on weekends.

    (3) back in the day of Blackberry older had a view "of today" where you could see the incoming email and tasks on the main screen. I couldn't get that with my Bold 9900, but I found this interesting app called BePopup which jumps to the top of my texts and emails on the screen as they come, without touching a button. Can you get automatically posted emails or texts with that with the classic?

    (4) the Blackberry plan I have with my provider uses the platform communications for my Blackberry RIM and so my e-mails are immediate, arriving minutes always quicker than other CC (iPhone and Android users) distribution lists. That being said, is the new classic uses what platform these other phones use for messaging connectivity?

    Any feedback regarding these essential functions would be greatly appreciated as it will help me in my decision. I am very happy with my 9900 and have little reason to upgrade... unless all of these options are available.

    williamgault wrote:

    I am extremely satisfied with the functionality of my Blackberry Bold 9900 and yet I am fun the idea of upgrading to a classic Blackberry and had a few questions, some of them functional, but one of them is technical:

    (1) I have granularily configured different contacts to the ring through "silent" while some people may sound through if I'm having a NAP or sleep. The classic allows you granularily configure the option of 'ring through' on a manually configured silent mode?

    (2) can the classic surely go to sleep and wake up one day of week / weekend schedule? My current phone doesn't sleep at midnight and wake up at 06:00 every night of the week and 02:00 to 09:00 on weekends.

    (3) back in the day of Blackberry older had a view "of today" where you could see the incoming email and tasks on the main screen. I couldn't get that with my Bold 9900, but I found this interesting app called BePopup which jumps to the top of my texts and emails on the screen as they come, without touching a button. Can you get automatically posted emails or texts with that with the classic?

    (4) the Blackberry plan I have with my provider uses the platform communications for my Blackberry RIM and so my e-mails are immediate, arriving minutes always quicker than other CC (iPhone and Android users) distribution lists. That being said, is the new classic uses what platform these other phones use for messaging connectivity?

    Any feedback regarding these essential functions would be greatly appreciated as it will help me in my decision. I am very happy with my 9900 and have little reason to upgrade... unless all of these options are available.

    1.) Yes, you can see: http://docs.blackberry.com/en/smartphone_users/deliverables/67769/alc1334332742901.jsp

    2.) I don't think that this feaure is available, I'm not quite sure

    (3.) I'm not familiar with the view "today." To develop?

    Yes 4). 10 blackBerry smartphones requires more BIS data plan. Given regular or WiFi will work.

    Visit http://global.blackberry.com/en/smartphones/blackberry-classic/overview.html for more details on the classic.

  • Questions classic blackBerry with the app "Help".

    When I run the application for assistance on my classic, I

    Frequently asked questions

    The Setup and basic principles

    Downloads

    Phone and voice

    etc.

    When I go to the frequently asked questions, I see

    How to block calls?

    How can I configure BlackBerry Balance?

    How can I reset my password for the device if I forget it?

    etc.

    When I go on ' how to block calls?

    I get "sorry, this help topic is not found. Try using the search to find what you are looking for. »

    This happens with many topics. Some work, however.

    I tested on a classic and a Z30, same issue on both.

    The software version is 10.3.1.1779

    Can someone test on his device whether aid works and post the result here?

    Thank you.

    It works again for me.

  • Simple questions OS10 BlackBerry

    I have this code

    /*
     * Copyright (c) 2011-2013 BlackBerry Limited.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    #include "applicationui.hpp"
    
    #include 
    #include 
    #include 
    #include 
    #include 
    
    using namespace bb::cascades;
    
    ApplicationUI::ApplicationUI(bb::cascades::Application *app) :
            QObject(app)
    {
        // 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);
        // Since the variable is not used in the app, this is added to avoid a
        // compiler warning
        Q_UNUSED(res);
    
        // initial load
        onSystemLanguageChanged();
    
        // Create scene document from main.qml asset, the parent is set
        // to ensure the document gets destroyed properly at shut down.
        QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
    
        // Create root object for the UI
        AbstractPane *root = qml->createRootObject();
    
        Container *container = new Container();
    
        Image image = Image(QUrl("asset:///images/myimage.png"));
        container->add(image);
    
           root->setContent(container);
        // Set created root object as the application scene
        app->setScene(root);
    }
    
    void ApplicationUI::onSystemLanguageChanged()
    {
        QCoreApplication::instance()->removeTranslator(m_pTranslator);
        // Initiate, load and install the application translation files.
        QString locale_string = QLocale().name();
        QString file_name = QString("MySecondApp_%1").arg(locale_string);
        if (m_pTranslator->load(file_name, "app/native/qm")) {
            QCoreApplication::instance()->installTranslator(m_pTranslator);
        }
    }
    

    I get errors in the container lines-> add (image);

    root-> setContent (container);

    How can I solve this problem? How can I organize photos in a container vertically, not horizontally.

    Yop, the function does not exist.

    Maybe you can try to read

    How to create the UI with C ++.

    https://developer.BlackBerry.com/native/documentation/Cascades/Getting_started/first_app/lightning_c...

    or QML

    https://developer.BlackBerry.com/native/documentation/Cascades/Getting_started/first_app/lightning_c...

    Or you can use the findChild

    Example:

    QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
    
    // Create root object for the UI
    AbstractPane *root = qml->createRootObject();
    
    Container *container = root->findChild("container");
    if (!container){
        qDebug() << "Error find container";
    }else{
        Label label;
        label.setText("Works");
        container->add(&label);}
    
    // Set created root object as the application scene
    app->setScene(root);
    

    Main.QML QML

    import bb.cascades 1.2
    
    Page {
        Container {
            objectName: "container"
    
        }
    }
    

     

  • BlackBerry Smartphones has simple question on volume of phone ringing.

    I am grateful for this forum because even simple questions like the following are difficult to obtain responded by Blackberry.  Seizing the issue in the 'Help' section on my handheld gives always nothing.  It seems that a large company like RIM would understand more in their user manuals.  Anyway, enough ranting... Here's the question:

    Quite simply, how can I increase the volume of the ringer on the phone?  By pushing the volume button for a call that increase the volume of calls.  Pushing not courts of appeal does nothing.  I'm sure that there is a way to do it, but I'm coming emptyhanded.

    Thank once again the community here as a whole for the excellent work which is made to help other Blackberry users.

    Profiles > advanced > highlight the profile you want to edit > press the menu key and go to 'Edit' > scroll down the list and find what you want to change the volume of the ring tone for example, standard messages

  • Classic BlackBerry very basic (?) stupid question

    I don't yet have a classic BlackBerry and I understand that it works with GSM, and that neither AT & T nor Verizon carriers nor any other major carrier supports again.  So if I buy a classic BlackBerry now, it means that I already have a cell phone to work with a carrier such as AT & T MOBILE and I need to get the SIM card to connect to the BlackBerry?  And I expect that it works?  Thank you.

    BlackBerry works in all the usual is GSM, 3G and LTE networks. All you need is a the operator's standard data plan you.

  • Classic BlackBerry how to type "o" number in classic Blackberry

    I'm in settings/WiFi.

    I'm trying to enter my passowrd to connect to wifi. the password has a zero in it, but there is no '0' on the keyboard.

    When I press the "Sym" twice I get numbers but not zero.

    I looked at the manual, the internet and tutorials. but I cannot find anywhere how to type "0".

    This is my first smart phone so Im really start at the beginning. I haven't yet done yet a call on a smart phone. And since zero this question, I don't think I can even someone phone area code has a zero in it.

    To type the number zero on your classic BlackBerry. Please press alt and zero which has the microphone on the keyboard icon.

    Hope it will work.

    pretty_krissy

  • Classic BlackBerry BB classic: can not load completely while the power is on

    Madam/Sir,

    I just bought a classic BlackBerry Q20. My problems are:

    1. I can't fully charge the unit while it is on. If it is enabled, the battery power stops at 60%, no other.

    2. If I load normal when the unit is off, Yes, it will charge up to 100% with green led. However, when I turn on the device, it will start exactly in factory setting. All data, applications and updates are missing.

    My question: what should I do? I downloaded the link BlackBerry and BlackBerry mixture, in their latest version. I also supported the unit entirely. But when this happens, and when I tried to restore the device with the last backup, the message is that my device is having a different setting with which stores the link of BlackBerry.

    Kindly help.

    Hi oppu

    Welcome to the community

    1. your device could be a software problem and you can try to repair it with software reset. You may need to perform this soft reset for several times until you find your battery can recharge normally

    Reset a BlackBerry smartphone

    2. this Knowledge Base can be applied to your second question: all data are deleted after a

    manual restart of smartphone BlackBerry 10 and a blue LED is displayed when starting the

    At the same time, what is your version of OS device?

  • How can classic BlackBerry locked out device, I contact BlackBerry?

    I recently picked up classic BlackBerry my sister, but she left her theft protection, apparently you forgot his password and then remove his BlackBerry ID thought that would solve the problem (of course it doesn't have). After doing a factory reset, it has become obvious that the device will not work without unlocking the theft protection, but this is impossible because his BlackBerry ID no longer exists. I called the store where she bought the classic BlackBerry and their response has been contact BlackBerry to reactivate the account.

    This seems simple enough, but in fact proved to be somewhat problematic. On the site Web of BlackBerry I get constantly referred to in the Belgian part of the site that does not exist. How can this even happen for a company of this size? For example: by clicking on the official "BlackBerry Support" link at the top of the page takes me to http://be.blackberry.com/support.html, which is just an error 404 and nothing else.

    I contacted (and followed) BlackBerryHelp on Twitter and sent a DM, but after about 30 hours without response I'm getting a little impatient and also fear they will just refer me to another place.

    Someone at - it experience with the account of aid and their response time? Is there another way to communicate with BlackBerry on this problem? My last resort is the call the phone number, but I would avoid that, given that the only options in Belgium are French/English and explain a problem over the phone is already quite annoying in my native language (in Dutch).

    I have the original purchase at hand confirmation and you can get any other required documents, then this isn't a problem. Any help would be appreciated.

    If you are a little technical, you can get your camera upward and functional by loading an old device software (which removes the protection against theft) and then load the latest version of the software again. Here are the steps:

    http://www.basics.NET/2016/04/19/BlackBerry-10-remove-anti-theft-protection-from-device/

  • Classic BlackBerry Verizon Wireless with the new classic of B.

    I am a Verizon Wireless customer for more than 25 years. Also, I'm a Blackberry user for the same time.  I've been dying to get new Balckberry classic, however, told me that Verizon does not her due to a type of different network transmission or something like that. This, it is not compatible with their network.

    I'm very, very sorry to hear that. My question is, ' you'll never make a b. classic that will be compatible with Verizon's network.  If so, when will it be available?

    Please notify earlier.

    Thank you.

    R. Ravelo

    Hi @sandybaby57! Welcome to the community of BlackBerry Support Forums!

    Please see this article and bookmark if you want: UPDATE: where to buy classic BlackBerry: price and availability

    See you soon!

  • Classic BlackBerry how to Auto BCC on classic blackberry?

    Hello

    I recently upgraed to classic bold9900. When sending emails to the devce I am no more able to Auto BCC myslef and receive messages sent in Outlook for archiving.

    I have read several articles, but I have not found a simple solution but for the purchase of an application. This will finally put my e-mails at risk, because I can't trust the developer of the App to not auto forwarding my emails.

    IMAP is not an option!

    Enjoy a simple solution for blackberry.

    Kind regards

    Hi @walidsaleh

    Auto BCC is not available in BlackBerry 10, sorry!

    The only option is to manually enter your address UNIT by pressing down three points on the right and selecting Add BCC whenever you're writing an email. I apologize for any inconvenience this may cause.

    Rest assured however that I forwarded your comments along to our product team for future consideration.

  • Simple question... How do to add pictures on the body of my MAILS found 1000 results for how can I add photos to my Thunderbird emails

    How can simple question - I add photos to my mail body. But instead of the answer - found 1000 results for how can I add photos to my Thunderbird emails. There are answers that don't apply at all to the question anyway. Why must it be so difficult to get a simple answer to a simple question?

    Thunderbird is a bit like Microsoft, all the reasons as I dumped MS Live Mail.

    First, a lot of help for Thunderbird refers to the menus that may not be visible. It would be useful to you and us if you have your menus and toolbars visible.

    http://chrisramsden.vfast.co.UK/13_Menus_in_Thunderbird.html

    Then, open a window of writing. Activate the menu and operate.

    Now that you see an option "Insert"?

    If this isn't the case, you can assign composing in plain text, which does not support embedded images.

    Tools | Account settings| {Select account} | Composition & addressing and ensure "Compose messages in HTML format" are checked. If it is not already checked, go back to writing a message. No better now?

    Once you have the mode of composition HTML goes, you can use Insert | Image or various permutations of copy - paste and drag - move to the body of your message.

    A manual of sorts: http://en.flossmanuals.net/thunderbird/composing-messages/

  • MacBook Pro (retina, 15 inches, beginning 2013) El Capitan 10.11.3, Simple question here: I can't open FinalCut Express (4, I believe). The wheel turns for hours. How can I install/uninstall and will I lose all my old films (for the most part stored on ex

    MacBook Pro (retina, 15 inches, beginning 2013) El Capitan 10.11.3, Simple question here: I can't open FinalCut Express (4, I believe). The wheel turns for hours. How can I install/uninstall and will I lose all my old films (for the most part stored on external hard drives). Thanks for your suggestions.

    You will not lose anything, but the app if you uninstall. If you decide to uninstall use this app to make sure that all the other files which depends on FCE are also deleted however I can't give you any assurance as to whether you will be able to reinstall so that it works correctly. It is a software that has not been supported for almost 5 years and there are conflicting reports as to its compatibility with OS X 10.11. Can't I test it myself.

    Maybe someone else will chime in with their own experiences.

    Russ

  • The simple question is "where can I find the installer for the HP Quick start?

    The simple question is "where can I find the installer for the HP Quick start?

    BESR regards

    Hello:

    And here's one for W8...

    http://h20565.www2.HP.com/hpsc/SWD/public/detail?swItemId=ob_140915_1#tab1

  • simple question to function test of value chain

    Hey guys,.

    I m just started using teststand.

    My simple question is related to the function "test string value '. What is the difference between the "type of comparison' CASE SENSITIVE and IGNORE CASE? From my point of view are not really meaningful names.

    To avoid simple and stupid questions like that, I tried to use the internal helper function. I'm wrong when I say that the help features are not as good as in labView? I couldn t find any answer to my question... hmmm... How other people handle this situation? (outside of just trying?)

    Thanks for your help

    Hello

    Case SENSITIVE: it will fail if you compare "HELLO" with 'Hello' or 'A' with 'a '.

    IGNORE CASE: this will pass if you compare "HELLO" with 'Hello' or 'A' with 'a '.

    Hope that explains

    Jürgen

Maybe you are looking for

  • Apple script to check the part of iTunes library XML with another application.

    Y at - there no apple for script Set 'share the XML library with other applications iTunes'. under the name selected iTunes Preferences Advanced tab... I want to read itunes Media Library .xml, but in the last version of iTunes without xml is created

  • Satellite X 200-NVLDDMKM stopped responding BSOD

    Hi all Have a stock of X 200 (not overclock or any change at all) but constantly encounter NVLDDMKM BSOD. After a very quick search on Google, you can determine that this is an endemic problem with Vista and NVIDIA cards. I was wondering if someone T

  • Should I switch from Mavericks (MBPro mid-2009)

    I have a MacBook Pro mid-2009 (2.26 GHz/4 GB/1 TB HD) which is running Mavericks 10.95. I read how El Capitan appears to be an improvement on Yosemite and some people saying that it helped their old Mac (like mine) work better. Now that 10.11.2 is ou

  • Very Simple Config on a 6248

    I have the need to have 3 VLAN 3 VLANs cannot communicate with each other. VLAN must be able to access the internet My gateway is a standard Linksys router type with the IP address of 192.168.1.1 My IP switches is 192.168.1.7 (as shown below in confi

  • 4.2 software is available for devices 1111?

    Earlier, I asked a question about what was required to reimage a device with image 4.1 1111. I got the answer Hi Jeff, Recovery CDs are model specific if you need to reimage the ACS SE 1111 with his own recovery CD Here are the files you need to ask