Hi,
I have a question. I want to delete sms from mobile by means of classes from Qt mobility. Is there any way how to do it or do I have to use Native API?
THX.
Hi,
I have a question. I want to delete sms from mobile by means of classes from Qt mobility. Is there any way how to do it or do I have to use Native API?
THX.
Hi,
You can do it with Qtmobility api's
Detailed example can be found hereCode:QMessageId messageId(messageIdText); //Where messageIdText is the QString that contains the message QMessageStore::instance()->removeMessage(messageId)