|
|
10-01-2010
, 08:32 PM
|
|
|
Posts: 790 |
Thanked: 3,201 times |
Joined on Feb 2010
@ Argentina
|
#2
|
|
|
10-02-2010
, 03:03 AM
|
|
Posts: 180 |
Thanked: 75 times |
Joined on May 2010
|
#3
|
|
|
10-02-2010
, 03:16 AM
|
|
|
Posts: 3,159 |
Thanked: 2,017 times |
Joined on Feb 2008
@ Finland
|
#4
|
|
|
11-14-2010
, 08:43 AM
|
|
|
Posts: 59 |
Thanked: 42 times |
Joined on Nov 2009
@ Wageningen (NL)
|
#5
|
|
|
11-14-2010
, 10:15 AM
|
|
|
Posts: 3,159 |
Thanked: 2,017 times |
Joined on Feb 2008
@ Finland
|
#6
|
|
|
12-19-2010
, 02:28 PM
|
|
Posts: 3 |
Thanked: 0 times |
Joined on Feb 2010
@ Shiraz, Iran
|
#7
|
![]() |
| Thread Tools | Search this Thread |
|
I am trying to send SMS message with QtMobility QMessageService and it works but opens up the messaging application (conversations). Is there a way to send message without opening conversations? Or preventing conversations from catching inbound messages?
Here is my code (Stolen from web example):
QtMobility::QMessage message;
message.setType(QtMobility::QMessage::Sms);
message.setTo(QtMobility::QMessageAddress(QtMobili ty::QMessageAddress::Phone,address));
message.setBody(body);
QtMobility::QMessageService s;
if (s.send(message)) {
qDebug()<<"Success!";
}
else {
qDebug()<<"Nein, did not succed " }