01-24-2013 06:37 AM
Hello friends
I am using defalut sms composer screen in my application where i m filling mobile number and message text programmatically through this code -
try {
conn = (MessageConnection) Connector.open("sms://+919876543210");
textMsg = (TextMessage) conn.newMessage(MessageConnection.TEXT_MESSAGE);
textMsg.setAddress("sms://+919876543210");
textMsg.setPayloadText("Text Message");
msgArgs = new MessageArguments(textMsg);
Invoke.invokeApplication(Invoke.APP_TYPE_MESSAGES, msgArgs);
} catch (IOException e) {
Dialog.alert("Exception: " + e);
}
but in blackberry version 5.0 i m not able to fill message text in composer screen.
Can any one help me out it's urgent ?
01-24-2013 06:59 AM
01-24-2013 07:21 AM
any other way to open device composer screen ?
01-24-2013 07:48 AM