Blackberry messenger text no clearing after sending message.

Hi
I have a blackberry 9800 torch with the latest version of blackberry messenger on it. When typing and message and sending the message, the txt stays and wont clear at all. I have to delete the txt by deleting it. Only way to fix it is to uninstall and reinstall messenger then it will be fine for a day or two then it starts again.
Any idea on how to fix it so that it doesnt happen at all ?

Hey jacoatnos,
Welcome to the BlackBerry Support Community Forums.
Can you provide your BlackBerry Device Software that you're currently using on the BlackBerry Torch?
Also what version of BlackBerry Messenger you're using?
-ViciousFerret
Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
Be sure to click Like! for those who have helped you.
Click  Accept as Solution for posts that have solved your issue(s)!

Similar Messages

  • Mail will not quit after sending message with attachment

    B&W G3-450
    OSX 10.2.8
    640 MB RAM
    I recently switched to using an email account through AOL Instant Messenger (AIM.com). The only way to connect to their service is via IMAP. I have all the correct settings, I can send and receive email no problem.
    However, when I attempt to send a message that contains an attachment (.zip, jpeg, anything) the email will send just find. The problem is when I try to quit mail it wont' respond. I can continue to send or receive after sending the message but it will not quit. Trying to log out does not work either as it reports a problem with Mail that prevents closing the session. The only thing I can do is force quit mail.
    The next time I use mail it works fine and there are no problems. The only issue seems to be this hanging problem. I've never experienced this problem using POP3 accounts.
    Any suggestions?
    B&W G3-450   Mac OS X (10.2.x)  

    Does anyone have a suggestion here?

  • Creating a QueueReceiver after sending message to the QueueSender

              Hi,
              I'm implementing a blocking system, sending messages to a JMS Queue.
              In a servlet, in the init method, I'm creating the QueueSender object.
              When calling the servlet, in the service method, if I need to create a new
              message to let users know
              that one primary key is blocked, I create a message with a:
                   msg.setStringProperty("MyTablePrimaryKey", "PKValue");
              Then, I send it.
              If other clients want to update that record, he creates in the servlet's service
              a QueueBrowser like this:
              QueueBrowser receptor=qsession.createBrowser (myQueue, strFilter);
              where strFilter is "MyPrimaryKey IS NOT NULL".
              If the enumeration my QueueBrowser returns hasMoreElements(), the record is
              blocked.
              To unblock a record, I fetch the message from QueueBrowser with the with Enumeration.nextElement,
              and I set:
              message.setJMSExpiration(1);
              so the message is automatically deleted from the queue.
              I tried to use QueueReceiver to implement it, but as I don't know the filter's
              name in the init method of my servlet,
              it's not possible to read messages if the QueueReceiver is created after having
              sent those messages.
              Is my implementation correct? Is the behaviour of QueueReceiver logical?
              Of course, I'm thinking of doing all these things in EJBs to use transactions
              with JTA and JMS. Can be any problem
              with it?
              Sorry for the long question, but I've started discovering JMS a few hours
              ago, and it looks so interesting... :-)
              Best Regards,
              Ignacio
              

              Ignacio Sanchez wrote:
              > Tom Barnes <[email protected]> wrote:
              >
              >>
              >>Ignacio Sanchez wrote:
              >>
              >>>Hi,
              >>>
              >>> I'm implementing a blocking system, sending messages to a JMS Queue.
              >>>
              >>> In a servlet, in the init method, I'm creating the QueueSender
              >>
              >>object.
              >>
              >>> When calling the servlet, in the service method, if I need to create
              >>
              >>a new
              >>
              >>>message to let users know
              >>>that one primary key is blocked, I create a message with a:
              >>>     msg.setStringProperty("MyTablePrimaryKey", "PKValue");
              >>> Then, I send it.
              >>>
              >>> If other clients want to update that record, he creates in the
              >>
              >>servlet's service
              >>
              >>>a QueueBrowser like this:
              >>> QueueBrowser receptor=qsession.createBrowser (myQueue, strFilter);
              >>> where strFilter is "MyPrimaryKey IS NOT NULL".
              >>> If the enumeration my QueueBrowser returns hasMoreElements(), the
              >>
              >>record is
              >>
              >>>blocked.
              >>
              >>
              >>How? The QueueBrowser supplies a snap-shot of the queue, it doesn't
              >>prevent other receivers and queue-browsers from seeing the message.
              >>
              >
              >
              > That's exactly what I want. I want concurrent queue-browsers to see the same message.
              >
              >
              >>>
              >>> To unblock a record, I fetch the message from QueueBrowser with
              >>
              >>the with Enumeration.nextElement,
              >>
              >>>and I set:
              >>
              >>> message.setJMSExpiration(1);
              >>> so the message is automatically deleted from the queue.
              >>
              >>
              >>This will have no effect. Expiration can only be set when the message
              >>is sent, and only via the producer API not the message API. The message
              >>API setter is not intended for application use (see the
              >>javax.jms.Message javadoc). To delete the message you can
              >>create a QueueReceiver with a selector based on the message's
              >>message-id, then receive and acknowledge the message.
              >>
              >
              >
              > But it works!! I've tested once and again and it works fine for me. Shouldn't
              > it???
              >
              Gah!! This behavior is not supported. Do not depend on it to
              be there in future releases or SPs. Any changes to an already
              sent message by a client should propagate to the copy that
              is on the server.
              In fact, I think this may have already been fixed. Can you
              tell me which release and SP you are using?
              >>>
              >>> I tried to use QueueReceiver to implement it, but as I don't know
              >>
              >>the filter's
              >>
              >>>name in the init method of my servlet,
              >>> it's not possible to read messages if the QueueReceiver is created
              >>
              >>after having
              >>
              >>>sent those messages.
              >>
              >>I don't understand. If you can create the QueueBrowser when you
              >>need it, why can't you just create a QueueReceiver with a new selector?
              >
              > If I create a new QueueReceiver after having sent the message using a QueueSender,
              > the
              > receiver cannot read the messages already posted, even in selector is OK. But
              > it works with
              > a QueueBrowser ¿¿??¿¿
              If a QueueBrowser can see the message so should a QueueReceiver. They
              both use the same filter/selector mechanism. It is surprising
              that one worked and the other didn't. Or are you referring to
              the normal behavior that only one QueueReceiver can "see" the message
              at a time? And that once a QueueReceiver has a message the
              QueueBrowser will not "see" it?
              > That's why I'm using QueueBrowser and not QueueReceiver.
              >
              >
              >>>
              >>> Is my implementation correct? Is the behaviour of QueueReceiver
              >>
              >>logical?
              >>
              >>>
              >>> Of course, I'm thinking of doing all these things in EJBs to use
              >>
              >>transactions
              >>
              >>>with JTA and JMS. Can be any problem
              >>> with it?
              >>>
              >>> Sorry for the long question, but I've started discovering JMS a
              >>
              >>few hours
              >>
              >>>ago, and it looks so interesting... :-)
              >>>
              >>> Best Regards,
              >>> Ignacio
              >>
              >
              

  • Text getting cleared after throwing OAException message

    Hi,
    I have a message text input item and a drop down if user does not enter anything in either and hits button then I am throwing a OAException with a message.
    The problem is each time the user enters let us say some text in the drop down and does not select anything in the list all the text the user enters is being cleared off. They want to be able to preserve the text they wrote as it could be a lots of words.
    I tried acheiving this through saving the text into a variable and displaying it after the error but it gives me compile error saying statement is not reachable.
    Here is my part my code....the one in bold is where I was trying to assign the saved text back but it throws me compile error. Can someone suggest some other way of doing what I am trying to do?
    else if(SaveButton !=null && ((NoteType.length() == 0 || (NoteText.length()==0 && !"".equals(NoteText.trim())))))
    {System.out.println("The Note Status is Null raise an error");
      saveNoteText = NoteText;
      String message = "You must enter a note and select a note type";
            throw new OAException(message, OAException.ERROR);
            *OAMessageTextInputBean Note = (OAMessageTextInputBean)webBean.findChildRecursive("NoteText"); // Does not work*
            *Note.setText(saveNoteText);}*

    Hi Guys,
    Actually yes I am setting the value to NULL in the beginning of the PR when the page first loads.
    But the issue is that if I don't do that then the comments / notes that the user enters are showing up if I hit cancel and come back to the page. So my requirement is that if the User comes in the page the notes and note type should be null or blank.
    There are 2 buttons on the page one is the Save button and the other is the Cancel button. I just want the to handle my items correctly on these events.
    * IF the user hits the save button without entering the required fields then I raise an OAexception but the all the fields are getting cleared out. ( I don't know how since I set them to NULL in the PR not in PFR). I want the error message but I don't want to clear out the fields.
    * IF the user hits the cancel button I don't want to retain or keep the fields I want to blank them out.
    Right now, I can make one or the other work but not both. Can anyone please suggest what I should do. Would really appreciate it. Below is my controller code that setting the stuff
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    String test = (String)pageContext.getParameter("ImcPartyId");
    String ExecuteQueryReport = pageContext.getParameter("ExecuteQueryReport");
    String retURL = pageContext.getParameter("retURL");
    String ExecuteQuery = pageContext.getParameter("ExecuteQuery");
    String SourceSystem = pageContext.getParameter("SourceSystem");
    pageContext.putSessionValue("SourceSystem", SourceSystem);
    System.out.println("The Party ID Here is "+ test);
    {  *OAMessageTextInputBean Note = (OAMessageTextInputBean)webBean.findChildRecursive("NoteText");*     // If I comment this out then in the error
    OAMessageChoiceBean NoteType = (OAMessageChoiceBean)webBean.findChildRecursive("NoteTypeID"); // message my fields are not getting blanked out
    Note.setText(null);
    NoteType.setText(pageContext, null); } // but if I cancel and come back it still shows up...
    pageContext.putSessionValue("retURL", retURL);
    pageContext.putSessionValue("ExecuteQuery", ExecuteQuery);
    pageContext.putSessionValue("ExecuteQueryReport", ExecuteQueryReport);
    // This code added to make the cursor busy after apply.
    OAWebBean body = pageContext.getRootWebBean();
    if (body instanceof OABodyBean)
    ((OABodyBean)body).setBlockOnEverySubmit(true);
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
         System.out.println("Start the Controller");
    String SaveButton = (String)pageContext.getParameter("SaveNote");
    String CancelButton = (String)pageContext.getParameter("CancelNote");
    String NoteText = (String)pageContext.getParameter("NoteText");
    String NoteStatus = (String)pageContext.getParameter("NoteStatusID");
    String NoteType = (String)pageContext.getParameter("NoteTypeID");
    String Party = (String)pageContext.getParameter("ImcPartyId");
    String SourceSystem = (String)pageContext.getSessionValue("SourceSystem");
    String NewStatus = (String)pageContext.getSessionValue("NewStatus"); // This is working.
    String OldStatus = (String)pageContext.getSessionValue("OldStatus");
    String retURL = (String)pageContext.getSessionValue("retURL");
    String ExecuteQuery = (String)pageContext.getSessionValue("ExecuteQuery");
    String ExecuteQueryReport = (String)pageContext.getSessionValue("ExecuteQueryReport");
    System.out.println("THE OLD STATUS IS " + OldStatus + " New Stauts " + NewStatus);
    // System.out.println("The Note Type is " +NoteType);
    // System.out.println("The Party Cancelled is " + Party);
    String RespID = Integer.toString(pageContext.getResponsibilityId());
    String UserID = Integer.toString(pageContext.getUserId());
    OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean);
    Serializable[] params = {NoteText, RespID, UserID, Party, NoteStatus, NoteType};
    Serializable[] params1 = {Party, NewStatus, SourceSystem};
    if (CancelButton != null)
    { System.out.println("Inside Cancel");
    OAApplicationModule projectam = (OAApplicationModule)pageContext.getApplicationModule(webBean).findApplicationModule("ShipperOverviewAM1");
    projectam.invokeMethod("rollbackTransaction");
    CancelButton = null;
    // The user has clicked an "Cancel" icon so we want to navigate back keeping everything in Context.
    HashMap param = new HashMap();
    param.put("partyID", Party);
    param.put("ExecuteQueryReport", ExecuteQueryReport);
    param.put("SourceSystem", SourceSystem);
    param.put("ExecuteQuery", ExecuteQuery);
    param.put("retURL", retURL);
    pageContext.setForwardURL("OA.jsp?page=/xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG"
    ,null
    ,OAWebBeanConstants.KEEP_MENU_CONTEXT
    , null
    , param
    ,true // Retain AM
    ,OAWebBeanConstants.ADD_BREAD_CRUMB_NO
    ,OAWebBeanConstants.IGNORE_MESSAGES);
    else if(SaveButton !=null && ((NoteType.length() == 0 || (NoteText.length()==0 && !"".equals(NoteText.trim())))))
    {System.out.println("The Note Status is Null raise an error");
      String message = "You must enter a note and select a note type";
        throw new OAException(message, OAException.ERROR);  }
    else if (SaveButton !=null && ((NoteType.length() > 0 && NoteText.length() > 0 && !"".equals(NoteText.trim()))))
    { System.out.println("Inside here Pressed Save Button");
    String returnValue = (String)am.invokeMethod("addNotes", params);
    //if (a != null && !"".equals(a.trim()))
    // Put an if condition here. Only commit if the Notes return a "S" otherwise throw an exception.
    if (returnValue.equals("S"))
    {  OAApplicationModule projectam = (OAApplicationModule)pageContext.getApplicationModule(webBean).findApplicationModule("ShipperOverviewAM1");
    projectam.invokeMethod("UpdateStatus", params1);
    // projectam.invokeMethod("commitTransaction");
    System.out.println("Commit Transaction Done.");
    MessageToken[] tokens =
    { new MessageToken("NEWSTATUS", NewStatus),
    new MessageToken("OLDSTATUS", OldStatus),
    String MainUrl = "OA.jsp?page=/xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG&retainAM=Y&ImcPartyId="+Party+"&ExecuteQueryReport="+ExecuteQueryReport+"&SourceSystem="+SourceSystem+"&ExecuteQuery="+ExecuteQuery+"&retURL="+retURL;
    OAException descMesg = new OAException("XXTSA", "XX_KSMS_SAVED_NOTES", tokens);
    OADialogPage dialogPage = new OADialogPage(OAException.INFORMATION, descMesg, null, MainUrl, null);
    pageContext.redirectToDialogPage(dialogPage);
    else
    {   OAApplicationModule projectam = (OAApplicationModule)pageContext.getApplicationModule(webBean).findApplicationModule("ShipperOverviewAM1");
    projectam.invokeMethod("rollbackTransaction");
    System.out.println("Rollback Executed ");
    String MainUrl = "OA.jsp?page=/xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG&retainAM=Y&ImcPartyId="+Party+"&ExecuteQueryReport="+ExecuteQueryReport+"&SourceSystem="+SourceSystem+"&ExecuteQuery="+ExecuteQuery+"&retURL="+retURL;
    OAException descMesg = new OAException("XXTSA", "XX_KSMS_ERROR_NOTES");
    OADialogPage dialogPage = new OADialogPage(OAException.INFORMATION, descMesg, null, MainUrl, null);
    pageContext.redirectToDialogPage(dialogPage);
    // OAApplicationModule rootam = pageContext.getRootApplicationModule();
    //am.invokeMethod("commitTransaction");
    // System.out.println("Inside Save");
    // Try build your own Dialog Page here....
    /*String MainUrl = "OA.jsp?page=/xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG&retainAM=Y&ImcPartyId="+Party;
    OAException descMesg = new OAException("XXTSA", "XX_KSMS_SAVED_NOTES");
    OADialogPage dialogPage = new OADialogPage(OAException.INFORMATION, descMesg, null, MainUrl, null);
    // This should take us to and OK Button after pressing the User should go back to Shipper Page. */
    }

  • Entire text history disappears after sending MMS - Where are they, how do I get them back

    I was attempting to send a picture via MMS, the picture was unedited, no third party app was used for editing or sending the picture. When it was sending, the apple icon appeared on a black background as if it was rebooting. When the reboot was complete, my entire history of messages was gone. When I search for messages on spotlight search, they appear - so they are still somehow in the phone. But when I select one from the search for viewing, it takes me to a "new message" page as if the text no longer exsists. I tried turning the phone off, removing the SIM card, leaving it for several minutes, then restarting. I am still opperating on ios 4, and have not attempted a restore yet. I am hoping to retrieve the lost messages, since apparently they are still being stored and remembered by some part of my phone. Why did this happen, and is there any way to save my message history? There are quite a few conversation I really want back. I would also like to know why my phone would do this and how I can prevent it from happening again in the future.

    Solution that worked for me provided by cor-el:
    [[https://support.mozilla.com/en-US/questions/822834?new=1]]
    The second Google cache link works. To find the file in Windows, in Firefox click "Help", then "Troubleshooting Information". In the new tab that opens click the box "Open Containing Folder" under Application Basics and next to Profile Directory. Close Firefox. Find the file "localstore.rdf" (in the Windows folder you just opened) and delete. Open Firefox and customize your toolbars. Should be the last time you have to do it.

  • Beep noise after sending message

    does anyone know how to turn it off?
    the (du nun) annoying tone after you send each message?
    thank you

    Open Preferences from within the Mail program and note the exact settings for your email accounts.
    Quit Mail
    Trash the following file:
    your home directory / Library / Preferences / com.apple.mail.plist
    and empty the Trash
    Restart Mail
    Re-install your mail settings
    These actions will not interfere with your mailboxes, it will simply create a new plist preference file when you re-start Mail.

  • Contact goes offline after sending message

    When i send a massage to a contact they go offline then comes back on every time and does not show everyone online takes like 5 mins to see everyone online now my contacts are not even coming online just one is

    as a guess, try using one Bluetooth at the time (power off other devices), see if it makes any difference

  • Unsent draft remains after sending message

    Whenever I spend more than a few moments composing a message (with or without attachments), a draft indicating that it has been unsent remains in my Drafts box, even though the message has already been successfully sent.  I find myself having to constantly delete those messages from the Drafts box so as not to confuse them with truly unsent drafts.

    Hi Bob, tha's a strange one...
    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partitiion & use Disk Utility from there to Repair the Disk, then Permissions.
    Then in Mail, highlight each Mailbox & try Rebuild from the Mailbox menu item.

  • I can't send message to some contact but they can sent me message Blackberry Pearl3g 9105

    Blackberry Pearl3g 9105
    I can't send message to some contact but they can sent me message.
    when they send me message I receive it but when I send them message it shows the sign X in red 
    Please help 

    both of you should delete each other as a contact in your BBM app.
    Reboot both devices.
    Then. one of you send a BBM invite to the other and try again.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Cannot use Blackberry App World or Blackberry Messenger

    I have a Torch 9800 and I have downloaded App World and Messenger but they do not appear anywhere on the phone.  I can see them in my applications list, but no icon and not visible on the home screen.
    How do I get these to work?
    thanks!

    Hi enriquerp77
    Welcome to Support Forums
    If you are having trouble locating BlackBerry World as well as BlackBerry Messenger , then :
    For BlackBerry App World :
    If you device OS is prior to 6.0.0.706 then try Updating your device software or Download BlackBerry World version 4.0.0.55 which is the best workaround now available for BlackBerry  World also uninstall BlackBerry world from Options > Device > Application Management > Locate and delete BlackBerry  World , then perform another Battery pull restart .
    Then From your BlackBerry Browser browse to http://mobileapps.blackberry.com/devicesoftware/entry.do?code=appworld3 to download version 4.0.0.55 . In addition check this Knowledge Base for further help :
    KB29422  BlackBerry App World icon is missing after upgrading to BlackBerry App World 4.0.0.63 to 4.0.0.65.
    For BBM  :
    On your Homescreen Go to Options > Device Application Management > Locate and delete BlackBerry Messenger from there. After deleting do a Battery Pull Restart like this device POWERED ON remove the battery wait a min. then re-insert it back . After reboot from your BlackBerry Browser browse or Click here www.blackberry.com/bbm and download  the most recent available for your device  . If device prompt for a restart do it .If still unable to view BBM icon on your Homescreen check this Knowledge Base :
    KB23968 BlackBerry Messenger icon disappears from the Home screen of the BlackBerry smartphone.
    Please try those steps and let us know also perform a Battery pull restart after each install.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • I Can't Recieve or Send Messages To People Abroad Through Blackberry Messenger

    Hi, I'm having huge trouble with my Blackberry Messenger. It's not letting me sending messages to any person abroad BUT I'm still able to send it to people in the same country (UK). This has never happened to me before and just happened suddenly this morning.
    This has happened to someone I know and it eventually worked itself out after quite a long time, he couldn't send message abroad, couldn't recieve them and even couldnt use it through Yahoo Messenger or MSN. He went to the provider and they had no idea either.
    This is a huge problem for me and I need to get this sorted out as soon as possible.
    Does anyone have any idea what this could be and how it can be resolved???
    Thank you.

    You need to call your carrier/mobile provider support desk, and ask to have this escated up to the BlackBerry  RIM level tech support.
    Good luck.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Send icon on touchcsreen mostly not working in facebook messenger unless I turn off iphone 5s on and off again, very annoying having to do it after every message!

    send icon on touchcsreen mostly not working in facebook messenger unless I turn off iphone 5s on and off again, very annoying having to do it after every message!

    YYour annoyed at Facebook right since you're using their messenger app. Ask Facebook or look at their support site.

  • Blackberry messenger sending messages

    i am able to recieve messages but my contacts dont seem to be getting mine. when i send a message i get a tick but no D or R, after a while the D shows u[p but my contacts still dont receive the message, ive tried taking the battery out several time and i have even service wipped my phone and its still not working. how do i fix this?

    Hello snowmickey
    Welcome to Support Forums
    Apart from BBM issue are you able to use other BlackBerry Application on your device like emails services ? If you are then try those steps and in a sequence :
    1- Register your Handheld .
    KB00510 : How to register a BlackBerry smartphone with the wireless network
    Wait till a Registration messages comes in your message box.
    2- Delete and Resend your Service Book
    KB05000 : Delete the service book for the BlackBerry Internet Service email account from the BlackBerry smartphone
    KB02830 : Send the service books for the BlackBerry Internet Service
    ( Wait till a Registration Message comes in your message box for each email that you have configured on your device )
    3-  Then perform a battery pull restart like this while the device is powered On remove your battery wait for a min. then reinsert it back
    Please note , you must recieve those registration messages on your message box , before proceeding to the next step . If unable to recieve those messages then you have to contact your Carrier for formal support .
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • Blackberry curve (8300) is adding a 1 to phone number in SMS?? will not send message?

    I get an error message saying that I need to resend the message w/ a proper 10 digit number... Which I have in my address book, but then the phone will add an extra 1 to the #, making it 11 characters, and thus not sending messages.... I have looked through both phone and SMS options and have found nothing that helps.. I have turned off the country code in phone options, resent the SMS, and still had the same problem.  then I took the area code off and the same thing still happened. Please help b/c I cannot text my gf at the moment????!!!
    also, it adds a 1 to only certain phone numbers.  i can text almost everybody else just fine, apart from like 3-4 people.
    thanks in advance,
    ~Andrew~

    Try http://supportforums.blackberry.com/t5/BlackBerry-Storm/Menu-Key-not-working/td-p/151422
    Twitter: @IAmBenGiey | Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.
    Try my apps:
    The Ultimate Currency Converter and T2G - BloGFeed

  • I am not able to send messages to multiple person from my iphone 5s after updating to ios 8.1.2. It shows message not delievered

    I am not able to send messages to multiple person from my iphone 5s after updating to ios 8.1.2. It shows message not delievered

    Hi waqaskhan91,
    Thank you for visiting Apple Support Communities.
    If you're not able to send text or iMessages to certain contacts after updating your iPhone, start with the troubleshooting tips in this article:
    iOS: Troubleshooting Messages - Apple Support
    If you only see this behavior with a few contacts, you may want to try these steps first:
    If the issue occurs with a specific contact or contacts, back up or forward important messages and delete your current messaging threads with the contact. Create a new message to the contact and try again.
    If the issue occurs with a specific contact or contacts, delete and recreate the contact from the Contacts app. Send a new message to the contact.
    Best Regards,
    Jeremy

Maybe you are looking for

  • Downloaded audio books from library website. How do I get it to appear in audiobooks on my ipod.

    I have downloaded audiobooks from a library website.  The books are listed under RECENTLY ADDED.  The only way I can listen to a book on my ipod is to listen as a playlist.  How do I get the book to show up in AUDIOBOOKS?

  • IE v7 alignment issues

    My main content is out of alignment in IE7 but looks fine in Safari and Firefox  (big suprise there). http://fitnessworx.thehtmlcode.com/ I can't get the page to align (shrink to fit)  in IE like it does in Firefox or Safari. I used a template that s

  • Tool bar is disappearing

    Why is my tool bar in Internet Explorer disappearing all the time?  It's very annoying and I have to hover over the bar to close out my windows.  Please help!!

  • Degraded mirrored raid- won't rebuild

    I've had 2 500 gig drives mirrored. When I set up the drives I did not check "automatically rebuild". I just discovered ( not too long after installing Leopard) that one slice was "damaged" and the raid was degraded. I tried to rebuild, but got an er

  • Ipod Shuffle will only play one song

    Brand new shuffle 4th Gen. Will only play one song over and over. even when i press next it starts the same song again. I have got more then one song, tried restoring, i feel like ive tried everything... any ideas ?