BlackBerry 10 blocking of an incoming SMS

Good day for about 3 months now, I received a SMS that I don't know who it was from or if it is a Bug or what. Ihavejustbeendeletingit.

The Message is

{DELETED} telephone number

message: Please keep this message from Matthew IMEI: {DELETED}.

I have a way that you could help me. I don't understand. I don't know where to turn.

Thanks, Denise

MOD Edit: Remove information staff to comply with the Community guidelines and the terms and Conditions of use.

Sorry!

You cannot block one person or the number to send SMS... Please chsek the link below...

http://helpblog.BlackBerry.com/2011/11/BlackBerry-message-block/

Thank you

Tags: BlackBerry Smartphones

Similar Questions

  • How can smartphones blackBerry I block CERTAIN calls and sms

    Hello, how do I block calls and sms in my Z10?, I do NOT want to block all calls but SPECIFIC NUMBERS, also retained the numbers (those with 'not available', 'out of area', 'private' description) coment: WP8 has already done this.

    This feature will be supported in OS 10.3 but is not currently supported.

    See you soon.

  • How to receive as net.rim.blackberry.api.mail.Message When listening for incoming sms?

    There are 3 types of ways to listen for incoming sms in the following link:

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/What_Is...

    All those who receive the javax.wireless.messaging.Message for further processing.

    I need to check the priority of the message received, which is only available in net.rim.blackberry.api.mail.Message and not javax.wireless.messaging.Message.

    Can someone guide me to get the net.rim.blackberry.api.mail.Message When listening for incoming sms?

    Thank you.

    Net.rim.blackberry.api.mail.Message is actually for mails not for sms

    Press the button Bravo thank the user who has helped you.

    If your problem has been resolved then please mark the thread as "accepted Solution".

  • Intercept specific incoming SMS

    Is it possible to intercept specific incoming SMS?

    Ex:

    I want to intercept all the SMS phone number + 1234567890

    Welcome on the support forums.

    Please use the search box at top right, it would give you results can be used as http://supportforums.blackberry.com/t5/Java-Development/Block-sms-from-specific-number/m-p/1348097#M...

  • How to detect an incomming SMS? -HELPPPP

    Hello everyone,

    This is my first post in this forum. So far, it has helped me a lot. But since a few days, I have had a problem. I want to detect an incomming SMS. I read some post and I found a few pieces of codes that are interesting. But, I failed to do so.

    Here are a few links I've read:

    -http://www.j2mepolish.org/javadoc/j2me/de/enough/polish/messaging/MessageListener.html

    -http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/What _...

    - http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/How_To _...

    - http://supportforums.blackberry.com/t5/Java-Development/notifyIncomingMessage-only-called-for-first-...

    - http://supportforums.blackberry.com/t5/Java-Development/How-to-listen-to-incoming-sms-message-only/m...

    I will stop here with links.

    Now, here is my code:

    /*
     * hw.java
     *
     * © , 2003-2008
     * Confidential and proprietary.
     */
    
    import java.util.*;
    import java.lang.*;
    import java.io.*;
    import java.io.IOException;
    import javax.microedition.location.*;
    import javax.microedition.io.*;
    import javax.microedition.io.file.*;
    import javax.microedition.pim.*;
    import javax.wireless.messaging.*;
    import net.rim.device.api.io.*;
    import net.rim.device.api.ui.*;
    import net.rim.device.api.ui.component.*;
    import net.rim.device.api.ui.container.*;
    import net.rim.device.api.system.*;
    import net.rim.device.api.i18n.*;
    import net.rim.blackberry.api.invoke.*;
    
    /**
     *
     */
    class hw extends UiApplication {
        public static void main(String[] args)
        {
            hw instance = new hw();
            instance.enterEventDispatcher();
        }
        public hw()
        {
            pushScreen(new SalutationScreen());
        }
    }
    
    class SalutationScreen extends MainScreen implements Runnable //, MessageListener
    {
        private Thread t;
        private MessageConnection _mc;
    
        public SalutationScreen()
        {
            super();
            LabelField applicationTitle =
                new LabelField("Hello World Title");
            setTitle(applicationTitle);
            RichTextField helloWorldTextField = new RichTextField("Hello World!");
            add(helloWorldTextField);
    
            t = new Thread(this);
            t.start();
    /*
            try {
                _mc = (MessageConnection)Connector.open("sms://:0");
                _mc.setMessageListener(this);
                helloWorldTextField = new RichTextField("setMessageListener : done");
                add(helloWorldTextField);
            }
            catch (IOException e) {
                helloWorldTextField = new RichTextField("erreur constructeur : " + e);
                add(helloWorldTextField);
            }
    */
        }
    
        public boolean onClose()
        {
            Dialog.alert("Bye World!");
            System.exit(0);
                    return true;
        }
    
        public void run()
        {
            try{
                DatagramConnection _dc = (DatagramConnection)Connector.open("sms://:0");
    
                for(;;)
                {
                    Datagram d = _dc.newDatagram(_dc.getMaximumLength());
                    _dc.receive(d);
                    byte[] bytes = d.getData();
                    String address = d.getAddress();
                    String msg = new String(bytes);
    
                    helloWorldTextField = new RichTextField("  Message text received : " + msg );
                    add(helloWorldTextField);
                }
            }
            catch(Exception e){}
    
    /* METHOD 2
            while(true)
            {
                try
                {
                    DatagramConnection _dc = (DatagramConnection)Connector.open("sms://");
                    Datagram d = _dc.newDatagram(_dc.getMaximumLength());
                    _dc.receive(d);
                    String address = new String(d.getAddress());
                    String msg = new String(d.getData()); 
    
                    helloWorldTextField = new RichTextField("Message received: " + msg + "\n" + address);
                    add(helloWorldTextField);
                    Alert.startVibrate(3000);
                }
                catch (IOException e)
                {
                        System.err.println(e.toString());
                }
            }
    */           
    
    /*  METHOD 3
            try {
                MessageConnection _mc = (MessageConnection)Connector.open("sms://:0");
    
                for(;;)
                {
                    Message m = _mc.receive();
                    String address = m.getAddress();
                    String msg = null;
                    if ( m instanceof TextMessage )
                    {
                        TextMessage tm = (TextMessage)m;
                        msg = tm.getPayloadText();
                    }
                    else if (m instanceof BinaryMessage) {
    
                        StringBuffer buf = new StringBuffer();
                        byte[] data = ((BinaryMessage) m).getPayloadData();
                        // convert Binary Data to Text
                        msg = new String(data, "UTF-8");
                    }
                    else
                        System.out.println("Invalid Message Format");
    
                    RichTextField helloWorldTextField = new RichTextField("Received SMS text from " + address + "\n" + msg);
                    add(helloWorldTextField);
                }
        }
        catch (IOException e)
        {
                System.err.println(e.toString());
        }
    */
        }
    
    /*  METHOD 4
            public void notifyIncomingMessage(MessageConnection conn) {
                RichTextField helloWorldTextField = new RichTextField("notifyIncomingMessage DEBUT");
                add(helloWorldTextField);                
    
                try {
                    Message m = conn.receive();
                    helloWorldTextField = new RichTextField("- Message recu");
                    add(helloWorldTextField);                
    
                    String address = m.getAddress();
                    String msg = null;
    
                    if ( m instanceof TextMessage )
                    {
                        TextMessage tm = (TextMessage)m;
                        msg = tm.getPayloadText();
                    }
                    else if (m instanceof BinaryMessage) {
                        StringBuffer buf = new StringBuffer();
                        byte[] data = ((BinaryMessage) m).getPayloadData();
    
                        // convert Binary Data to Text
                        msg = new String(data, "UTF-8");
                    }
                    else
                        System.out.println("Invalid Message Format");
    
                    helloWorldTextField = new RichTextField("- Message de : " + address + " // \""+ msg + "\"");
                    add(helloWorldTextField);
                }
                catch (IOException e) {
                    helloWorldTextField = new RichTextField("erreur _mc.receive : " + e);
                    add(helloWorldTextField);
                }
    
            }
    */
    
    /*  METHOD 5
            public void notifyIncomingMessage(MessageConnection messageConnection)
            {
                new Thread()
                {
                    MessageConnection conn;
                    Thread set(MessageConnection conn)
                    {
                        this.conn = conn;
                        return (this);
                    }
                    public void run()
                    {
                        try
                        {
                            Message m = conn.receive();
                            String msg = null;
    
                            if ( m instanceof TextMessage)
                            {
                                TextMessage tm = (TextMessage) m;
                                msg = tm.getPayloadText();
    
                                RichTextField helloWorldTextField = new RichTextField("- Message de : " + m.getAddress() + " // \""+ msg + "\"");
                                this.add(helloWorldTextField);
                            }
                        }
                        catch (Exception e)
                        {
                        }
                    }
                }.set(messageConnection).start();
            }
    */
    }
    

    In my code, I tested 5 methods. But, I think that all of them blocked the line where there is method of 'received() '.

    If there is someone who can help me find my problem, it's going to be great. (Or if there is someone who wants to send me a complete code that works, it will be better than the grand )

    Thank you for all the answers.

    I agree with you. It's better if I post a solution.

    I have re-written some other program that gets the phone number and the content of the incomming SMS.

    Here is my code

    public class smsReceived extends UiApplication
    {
        private LabelField _status;
        private DatagramConnection _dc;
    
        public static void main(String[] args)
        {
            new smsReceived().enterEventDispatcher();
        }
    
        public smsReceived()
        {
            super();
            waitASms();
       }
    
        public void waitASms()
        {
            try
            {
                _dc = (DatagramConnection)Connector.open("sms://");
                for(;;)
                {
                    Datagram d = _dc.newDatagram(_dc.getMaximumLength());
                    _dc.receive(d);
                    String address = new String(d.getAddress());
                    String msg = new String(d.getData());
                }
            }
            catch (IOException e)
            {
                System.err.println(e.toString());
            }
        }
    }
    

    In this code, the string 'address' is the phone number and the string 'msg' is the content.

    To view, please do another method with this channels.

    Next time.

  • deleting incoming sms in the Inbox

    Anyone know how to remove sms all inbox.

    I can't find a solution in the API.

    Not that new look or sms outgoin.

    Never click on a URL from the tiny type that you never know where he's going to do. If you trust the site, never click on the links to the full URL:

    http://supportforums.BlackBerry.com/T5/Java-development/deleting-incoming-SMS-from-Inbox/TD-p/592620

    AndreyMM,

    He doesn't know the rest of the code. Try searching Google or even Crackberry post as they usually come from assets

  • FileSystemJournalListener and incoming SMS do not work together

    I need the two lisnner in my incoming sms app and added file listner

    SMS module

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/How_To _...

    and the listner added file is

    Application appInstance = Application.getApplication ();
    screen filesystemJournalListener = new filesystemJournalListener();
    appInstance.addFileSystemJournalListener (screen);

    both work very well sapratly but if I put the two together only sms worked listner file you added, but not work

    Please help and sorry for the bad English

    You put the interface of the camera in a Thread, and not the SMS interface.

  • How to listen only to the incoming sms message

    I want only to hear incoming sms do message not MMA, how.

    See this Article.

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/What_Is...

    SMS to notify the application, look at this article.

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/How_To _...

  • No incoming SMS sound heard

    Hello

    I have two iPhones one is version 5 and the second is 5 s version.

    Both are updated to the latest version of iOS.

    In my worm. 5 s when entering SMS comes the iPhone gives alert music.

    The problem is with another iPhone 5 that when entering SMS happens no sounds are heard.

    I tried to compare the configurations, but found no difference between the two.

    I have to lack the question.

    Where can I configure the iPhone 5 to produce music for the arrival of incoming SMS alert.

    Thank you

    I would add: no mute is on. It is not Nothing disturbs mode

    Try updating to the latest iOS

    Also try to put in a different sound for text in settings - sounds

    Force restart the phone and see if the SMS produced the new sound

  • I received a great attachment that keeps appearing in my Inbox in and blocked all other incoming mail. How can I remove it?

    incoming mail problem

    I received a great attachment that keeps appearing in my Inbox in and blocked all other incoming mail.  What can I do?
    What email program are you using? For example, if you use Windows Live Mail and your e-mail server has been Comcast, you go on the Comcast website to check your mail and delete the message here.
  • Mark as read incoming sms

    OK, I could read/catch all incoming sms using a small piece of code but all these sms are also in the sms Inbox as unread.

    How can I mark as read?

    You cannot programmatically change the SMS Inbox.

  • I probed to "Always allow", "allow once" or "Block" for an incoming program. I accidentally click "block" and my program worked more! Please explain how I can allow the program to work again?

    I was probed to always select "allow", "allow once" or "Block" for an incoming program. I accidentally click "block" and my program worked more! Please explain how I can allow the program to work again?

    How can I reverse the error?
    Concerning
    JollyJ

    Without doubt blocked by any firewall you have installed, that being the review of the cases of your firewall settings that relate to this program

  • How to block the sending of SMS from BlackBerry in the code

    I tried to use notifyOutgoingMessage to interface OutboundMessageListener to catch the sending of SMS, but it does not work. In the document, I only give a copy of the message. So, I wonder how can I get SMS messages and block in the code? This is my essay:

    MessageConnection _mc = (MessageConnection) Connector.open("sms://:0");
    _mc.setMessageListener(new OutboundSMSListener());
    
    private static final class OutboundSMSListener implements OutboundMessageListener
    {
    public void notifyIncomingMessage(MessageConnection messageconnection)
    {
    
    System.out.println("Income Message received: ");
    }
    
    public void notifyOutgoingMessage(Message message)
    {
    
    System.out.println("------------------------\n\n\n\n\n");
    System.out.println("Message send: " + message);
    }
    }
    

    Implement SMS.addSendListener () and returns the value false in the sendMessage method. BTW, the SMS class has been implemented in 4.6.0 is not possible to do it on an OS earlier.

  • BlackBerry Smartphones blocking voice reading SMS

    I've recently updated my phone (Curve 9380) software and all messages incoming text (SMS) are read vocally and hard with a voice speaking in Italian with a British accent and mix the two languages. It's really annoying as this option, the value automatically by the software updated (this should not be so, but it's unfortunately), acts independently of any choice of audio profile. How can I remove it?

    Thanks in advance.

    Hello jonlester

    Welcome to the Forums of the BlackBerry Support

    Our BlackBerry cannot read our Messages text unless we install this 3rd party application, you need to check your applications list and uninstall or delete this particular application, if you have installed any application of party 3rd for this purpose or who reads the SMS delete this particular application to Options > device > application > locate and remove this application It will solve your problem.

    KB10040 : How to display or remove installed the application on a smart blackberry phone.

     

  • BlackBerry Smartphones Block an incoming call

    How can I block an incoming call if my PC does not have a call barring service?

    You can install 3rd party applications.

    http://appworld.BlackBerry.com/WebStore/search/call%20block?lang=en

Maybe you are looking for