Z10 Z10 caller ID Blackberry BlackBerry

Dears

someone help me with my Z10, I have a problem with caller ID, I don't see the caller ID if I put the code of the country and I have the latest OS 10.0.10.85.

10.1 finally solve the problem

Tags: BlackBerry Smartphones

Similar Questions

  • Z10 please help blackBerry. I can't place a call on BB Z10

    Hello

    Help, please. I have problem to place any call on Blackberry Z10. It was fine until today. I think that I didn't do any changes to phone. I can't make call on Blackberry, and it ends as soon as I make a call. Normally, I get a call from someone. What I would do.

    Yours sincerely,

    Tuya

    Hello r,.

    Welcome to the BlackBerry support community.

    Thank you for your question regarding the problem you are having with phone calls.

    Please reinsert your battery as a test. If this procedure fails to resolve the problem for you, please contact your mobile provider for more investigations.

    Let us know if you have any other questions.

  • How do to call the BlackBerry menu form share an Adobe Air application?

    Hello

    I'm looking for a tutorial or demo code that describes how to call the BlackBerry menu sharing an Adobe Air based application.

    I found a tutorial of waterfalls for it - there's one for Adobe Air too?
    - http://bbcascadescode.tumblr.com/post/38998702671/invoke-share-for-bb10

    This is a screenshot of the Action menu:

    Advice welcome!

    Here you go:

    package com.lib.playbook.invocation
    {
        import com.lib.playbook.controls.List;
        import com.lib.playbook.pages.TitlePage;
        import com.lib.playbook.renderers.IconListRenderer;
    
        import flash.events.Event;
        import flash.events.IEventDispatcher;
    
        import qnx.events.InvokeEvent;
        import qnx.events.InvokeQueryTargetEvent;
        import qnx.fuse.ui.core.Action;
        import qnx.fuse.ui.events.ActionEvent;
        import qnx.fuse.ui.events.ListEvent;
        import qnx.invoke.ActionQuery;
        import qnx.invoke.InvokeManager;
        import qnx.invoke.InvokeRequest;
        import qnx.invoke.InvokeTarget;
    
        public class InvokeSearchPage extends TitlePage
        {
            private var request : InvokeRequest = null;
            private var targets : List = new List();
    
            /////////////////////////////////////////////////////////////////////////////////////////
            public function InvokeSearchPage()
            {
                super();
                this.title = 'Search With';
                this.titlebar.dismissAction = new Action( 'Cancel', null, {id:'cancel'} );
                this.titlebar.addEventListener(ActionEvent.ACTION_SELECTED, ActionSelected );
    
                this.targets.cellRenderer = com.lib.playbook.renderers.IconListRenderer;
                this.targets.addEventListener(ListEvent.ITEM_CLICKED, TargetSelected );
                this.targets.rowHeight = 140;
                this.addChild( this.targets );
            }
    
            ///////////////////////////////////////////////////////////////////////////////////////////
            public function filter( request :InvokeRequest ) : void
            {
                this.targets.removeAll();
    
                this.request = request;
    
                //trace( 'filter ' + request.mimeType );
                InvokeManager.invokeManager.addEventListener( InvokeQueryTargetEvent.SUCCESS, TargetsFound );
                InvokeManager.invokeManager.queryInvokeTargets( request.mimeType, request.uri, request.action, request.targetOptions );
            }
    
            ///////////////////////////////////////////////////////////////////////////////////////////
            private function TargetsFound( event : InvokeQueryTargetEvent ) : void
            {
                InvokeManager.invokeManager.removeEventListener(InvokeQueryTargetEvent.SUCCESS, TargetsFound );
                //trace( 'TargetsFound' );
                var action : ActionQuery;
                var target : InvokeTarget;
                for each( action in event.actions )
                {
                    for each( target in action.targets )
                    {
                      this.targets.addItem( { data : target.target, label : target.label, icon : 'file://' + target.icon } );
                    }
                }
            }
    
            ////////////////////////////////////////////////////////////////////
            private function TargetSelected( event :Event ) : void
            {
                if( this.targets.selectedIndex >= 0 )
                {
                  this.request.target = this.targets.selection;
                  InvokeManager.invokeManager.invoke( this.request );
                }
            }
    
            ////////////////////////////////////////////////////////////////////
            private function ActionSelected( event :ActionEvent ) : void
            {
                switch( event.action.data.id )
                {
                    case 'cancel' : this.dispatchEvent( new Event( Event.CANCEL ) ); break;
                }
            }
    
            //////////////////////////////////////////////////////////////////////
            override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
            {
                super.updateDisplayList( unscaledWidth, unscaledHeight );
    
                this.targets.setPosition( 10, this.top + 10 );
                this.targets.setActualSize( unscaledWidth - 20, unscaledHeight - this.targets.y - 10 );
            }
        }
    }
    

    And the rendering engine:

    package com.lib.playbook.renderers
    {
    
        import qnx.fuse.ui.display.Image;
        import qnx.fuse.ui.listClasses.CellRenderer;
    
        public class IconListRenderer extends CellRenderer
        {
    
            private var icon    :Image = new Image();
    
            /////////////////////////////////////////////////////////////////////////
            public function IconListRenderer()
            {
                super();
            }
    
            ///////////////////////////////////////////////////////////////
            override protected function onAdded():void
            {
                super.onAdded();
                this.addChild( this.icon );
            }
    
            ///////////////////////////////////////////////////////////////
            override protected function onRemoved():void
            {
                super.onRemoved();
                this.removeChild( this.icon );
            }
    
            /////////////////////////////////////////////////////////////////////////////////////
            override protected function drawLabel(unscaledWidth:Number, unscaledHeight:Number):void
            {
                super.drawLabel( unscaledWidth, unscaledHeight );
    
                if( this.data )
                {
    
                    if( this.data.hasOwnProperty( 'icon' ) && this.data.icon != null )
                    {
                        this.icon.setImage( this.data.icon );
                        this.icon.setPosition( 10, 15 );//( unscaledHeight - this.icon.height ) / 2 );
                    }
                    else
                    {
                        this.icon.setImage( null );
                    }
    
                }
    
                this.label.x = 140;
                this.label.width = unscaledWidth - this.label.x - 20;
            }
        }
    }
    

    references com.lib.playbook our our inner classes, but you should get the approach to apply.

  • Impossible to center text on incoming phone call screen BlackBerry Storm OS V5.0

    I'm looking to display information on the screen of incoming call on BlackBerry Storm OS v5.0, Info is displayed, but I cannot focus.

    Code is below, pointers would be much appreciated.

            if (PhoneScreen.isSupported())
            {
                PhoneScreen ps = new PhoneScreen(callId, UiApplication.getApplication());
    
                PhoneScreenVerticalManager psvm = new PhoneScreenVerticalManager();
    
                VerticalFieldManager pwvfm = new VerticalFieldManager(Field.USE_ALL_WIDTH);
                HorizontalFieldManager pwhfm = new HorizontalFieldManager(Field.USE_ALL_WIDTH|Field.FIELD_HCENTER);
    
                Bitmap bitmap1 = Bitmap
                        .getBitmapResource("icons/indicator.png");
    
                BitmapField bitField = new BitmapField(bitmap1);
    
                VerticalFieldManager textVfm = new VerticalFieldManager();
    
                LabelField labelField3 = new LabelField("Label3");
                LabelField labelField4 = new LabelField("Label4");
    
                textVfm.add(labelField3);
                textVfm.add(labelField4);
    
                pwhfm.add(bitField);
                pwhfm.add(textVfm);
    
                pwvfm.add(pwhfm);
                psvm.add(pwvfm);
    
                ps.add(psvm);
                ps.sendDataToScreen();
            }
    

    Thanks Peter_Strange,

    I tried your solutions, but could not get to work. Finally I solved the problem with the help of PhoneScreen sample application available for download from the BlackBerry site.

    Although, I would like to add that the solutions you suggested work for a normal screen, but I couldn't make them work with the incoming call screen.

    Concerning

  • Need help to make calls in blackberry

    Hello friends,

    I need your help to make calls in blackberry OS version 6.0 and later versions.

    I write code to use, it works very well below 6.0 but on 6.0 and above all he does not.

    When I try this code on 6.0 I receive "cannot connect, call in progress.

    According to my research, this is a specific problem of the OS, but I'm not satisfied with this research.

    Actually I do an application that will dial a specific number again and again for 5 times ({at least} chosen by the user).

    Code: -.

        Application.getApplication().invokeLater(new Runnable() {
    
                public void run() {
                    try {
                        ApplicationManager.getApplicationManager().requestForeground(appProcessId);
                        Invoke.invokeApplication(Invoke.APP_TYPE_PHONE, new PhoneArguments(PhoneArguments.ARG_CALL, phoneNumber));
                              } catch (Exception ex) {
    //                    ex.printStackTrace();
                    }
                }
            });
    

    To resolve this problem, I tried for a few weeks, but no luck.

    Please help me.

    Thanks guys,.

    I found the solution to this problem,

    to fix this, I maintain a difference of 10 seconds on each call, I did.

    Thank you once again

  • BlackBerry Smartphones video calls between BlackBerry or Voip calls must read more than a year a RIM does nothing about it...! Must be in bb10 correct your mistakes

    Well, I'm not a programmer, but those who are not the their: Please answer this... ?

    Why isn't their an app that can allow us to make calls voip blackberry for blackberry ok forget voip called something like Skype or facetime where to users of phones like blackberry 9900 or the 9860 can call the other times video I had the blackberry from book reading its pretty useless I never use it no cause of offence I can t Skype video calls my friends family need to have a playbook to call me ridculous if you look @ the samsung or the iphone, they all Skype for if other users don't have the same mobile phone they can even video call each other pc to phone or ipad to pc... etc.

    I posted this on your facebook wall and hope that nothing is done about it

    Blackberry question, why don't have an application like Viber or Skype where users who have blackberry as 9900 or the 9860 in which the two phones have front camera could Skype call or an application like viber in the blackberry users can call on voip... it is a reall fall in expected an app for blackberry for almost a year rang also edge to do something about IT... most users go for iphone so because of these two applications that maintains the connected in time video reall... enjoy some answer on this...

    looking forward to the bb 10 having these sucks simple features of daily use not having them so fustrating I think to spend 529 book just cause the 9900 t can support Skype and the playbook is not just the feel

    It is perhaps a question better directed to Skype and not HERE in the forums.  Skype has an application for BlackBerry, but it is only available to U.S. subscribers using Verizon.  (This information can be updated to date, it's updated information I have.)  Given that these forums are composed (not the right choice of words) of volunteers who love BlackBerry phones and not by RIM developers, your chances of getting the answer you are looking for may be thin.

    I hope that helps you.

  • 10.2.1.537 Z10 post upgrade Blackberry Z10 OS blackBerry-phone call does not

    Dear team,

    I have updated to OS 10.2.1.537 today morning post updated and I'm not able to make phone calls. On the choice of the network, I am able to select the required network (Airtel India) but not able to make phone calls. Neither the data service works. SMS message also works using the telephone network, but not the call. Tried restarting, remove the SIM and the battery without any improvement.

    When you try to call I always get the message "the cell phone line is not available. Choose a different phone line and try your call again.

    concerning

    Surya Roy

    Hello and welcome to the community!

    10.2.1.537 is, in relative terms, a very old operating system level... you really need to use something more current, especially given your model Z10. I recommend that you force a reload of BONE via the more energetic method... ADF:

    Remember that you you get the AutoLoader for 10.2.1.3247 because it contains some very important fixes for the Z10 specifically.

    Good luck and let us know!

  • BlackBerry Z10 Caller id problem

    I have a big problem with my new Z10 camera. When someone call me the number entered in the regular format. When I receive an SMS, it came in the international format (+ 40...). Even though I have this number in my list of contacts, so is in regular format, it does not show the sender of a text message, if it does not display the caller's name in the international format. I ask my provider anh they tell me to contact blackbbery as is an internal problem and that I must make a 'reset' grateful bouth international and regular format. Help, please!

    Hey Hotnills,

    Welcome to the community of BlackBerry Support Forums.

    Thanks for the question.

    We are aware of this problem and there is no scheduled time when the issue is settled.  This article was created on the subject: www.blackberry.com/btsc/KB33685

    Let me know if you have any other questions.

    See you soon.

  • Z10 number call log blackBerry unknown?

    Hello. Can someone please help, when I click on the phone on the z10 that shows you all your logs there unknown number right at the top and below there my BlackBerry. I want to change that on my number but I do not know how? Display my phone number is already checked, which is for when you call people. Someone else has had this problem and fixed it? I've seen people say that you need to change it on the SIM but how do you still find your SIM on the z10?

    Hi BB10User,

    Welcome to the support community!

    You should be able to locate your SIM card settings by using the search feature. Once there, you should have the ability to change the phone number. If this does not help, I suggest contacting your mobile phone provider so that this feature is enabled in the BlackBerry smartphone pulls the phone number of the SIM card. If the information is not met on the SIM card, the number appears as unknown.

    Let me know if this helps.

  • BlackBerry phone Z10 call registry?

    My Z10 of Monday 29 is only records not not calls to phone in or out I can make and receive calls, but they do not appear in the hub of someone else with this problem and I hope that with a correction

    Thanks I have been looking that everything was on but I deleted and reinstalled the battery and the hub reset so that it works now

  • Call Z10 anonymous of blackBerry

    For nearly 2 months after I updated my Z10 (now I have the 10.3.1.1565 version), when I get calls, the phone number, or the name of my correspondent is displayed. So I don't know who it is before answering. I don't remember when I missed calls, because I don't know who is the person who tried to reach me. It is very annoying. Can anyone help? Thank you.

    It's news to me. Have you asked your service customer service provider. The network says your device number. If the number is in your address book, and then the device displays the name in your address book. My suspicion is that the network is not the number.

    On your side, you could do a wipe test and security. Manually enter a couple of contacts in your address book and test. If it works, then it is not the network. Do a restore, and if the problem reappears, then it would seem corrupt settings or corrupted data.

  • Call Delete blackBerry Z10 list

    How to remove the appellants

    Press and hold on the call log entry to remove. A menu appears on the right. Press the trash can to remove the entry from the call.

    Another method if you want to delete multiple entries, is to go on the Hub, select calls in the left menu and press the button of 3 points to bring up the menu on the right. Choose "Select more". Now you can choose any newspapers you want to remove, and then select the trash icon to delete.

    I hope this info helps!

  • BlackBerry Z10 call log

    I know that the parameter/answer must be somewhere but I can not find help or the Forums, sorry.

    Return back the call logs are saved?  Mine don't seem to go 1 month and I wish it were longer, so I can find a long distance phone call, I did.

    Thank you

    30 days is all you get. There are no settings for it I know.

  • Z10 Z10 user new blackBerry

    Just got my new Z10.  I entered my e-mail address incorrect as my Usename ID blackberry.  How to change the world cela and fix it.

    He calls to do a wipe?  What and how can I do this?

    Thanks for any help Ken.

    With the software Link, make a backup of the phone. Then do the wipe of security.  You can then restore the data with the software Link.

    If you have a Hotmail account, you can sync the phone to your Hotmail account. Then you can put all your contacts from Hotmail.

  • Z10 Office 365 BlackBerry / BlackBerry® Business Cloud Services

    Hello... About to get a system Z10, but thought that I check to see if someone has managed to link the Z10 in a Setup Office365 / BlackBerry® Business Cloud Services? I tried to search but have not been able to find all messages to see if it is possible...

    Configure you your e-mail as an ActiveSync account - enter your e-mail address and password allows you to access your emails in the details of the accounts and it sets up the email.

    BBCS is a version of BESx and does not support devices BB10.

Maybe you are looking for

  • Y at - it an option to disable automatic execution for the House, shared libraries?

    While most of the people like AutoPlay, when it comes to my home library share (computers), it is not necessarily the case. I was unable to find a way to disable this automatic reading as you can for Netflix and Hulu.  Does anyone know of a way to ch

  • "No boot device" after the BIOS doesn't load the Satellite L50 - B - 25 c

    A friend who bought this laptop came up to me, explaining that he does not have to install an operating system. Then I tried it myself. I dusted off my original windows 7 pro 32 bit cd he jumped into the tray to cd and tried to boot from the cd by us

  • Windows 10 Device Manager: "unknown devices", ACPI (Aspire V3 - 112 p)

    After a new installation of Windows 10 (64-bit / Education version) on my Aspire V3-112 p-P5B3, I have yet three "unknown devices" in my device manager and a warning about my 'SDA Standard compatible SD Host Controller'. The first three say «Drivers

  • XP cannot access Vista shared folder

    When you try to open or explore shared computer to Vista, XP used to have a pop up to enter the user name and password. Now, it displays the files when you click Open or explore but access is denied to one of the folders. How can I get that back to a

  • cursor or erratic behavior

    while typing of e-mail or other documents, the cursor jumps to another location causing my typing be moved to another location. This change occurs without known reason and where it moves at random is