newlc.com
Articles Only
Forum Only
Community
World-Wide Web
Home
News
Tutorials
Reviews
Downloads
Professional Services
Forums
Newsletter
Blog
About us
Last forum posts
Home
::
Forums
::
Development
::
Communications
::
Messaging
User login
Username:
*
Password:
*
Create new account
Request new password
Featured pages
Configure your PC for Symbian development
Getting started with Symbian development
Symbian OS Error Codes
Common products UIDs
Nokia S60 SDK
Featured Software
NlMakesis
Y-Browser
Y-Tasks
Active users (last 30 days)
User
Score
eric
54
rbrunner
54
Andreas
46
sandeepmhptr
41
alh
32
more
Feeds
More feeds...
detect/change MMS Settings????
Login
to reply to this topic.
Thu, 2005-06-23 13:10
Anonymous
Forum posts: 2043
How can i check/update MMS setting in Code? How are they saved on device?
Login
or
register
to post in forums
Thu, 2005-06-30 10:48
Uncle Sam
Joined: 2005-05-12
Forum posts: 26
Re: detect/change MMS Settings????
Why are you asking this in the 2D/3D Graphics section???
Here is an example code for disabling the receiving of MMS, more to find in your API doc for CMmsClientMtm:
Code:
iSession = CMsvSession::OpenSyncL(*this); // this class must implement MMsvSessionObserver
iMtmReg = CClientMtmRegistry::NewL(*iSession);
iMmsClient = (CMmsClientMtm *) iMtmReg->NewMtmL(KUidMsgTypeMultimedia);
// load the default settings
iMmsClient->SwitchCurrentEntryL(iMmsClient->DefaultSettingsL());
iMmsClient->LoadMessageL();
// change the necessary settings
iMmsClient->SetMmsReceivingMode(EMmsReceivingDisabled);
// save the settings
iMmsClient->SaveMessageL();
 
Thu, 2005-06-30 13:54
chishti_hameed (not verified)
Forum posts: 2043
Re: detect/change MMS Settings????
Quote from: Uncle Sam
Why are you asking this in the 2D/3D Graphics section???
Here is an example code for disabling the receiving of MMS, more to find in your API doc for CMmsClientMtm:
Code:
iSession = CMsvSession::OpenSyncL(*this); // this class must implement MMsvSessionObserver
iMtmReg = CClientMtmRegistry::NewL(*iSession);
iMmsClient = (CMmsClientMtm *) iMtmReg->NewMtmL(KUidMsgTypeMultimedia);
// load the default settings
iMmsClient->SwitchCurrentEntryL(iMmsClient->DefaultSettingsL());
iMmsClient->LoadMessageL();
// change the necessary settings
iMmsClient->SetMmsReceivingMode(EMmsReceivingDisabled);
// save the settings
iMmsClient->SaveMessageL();
Sorry for posting at wrong place
I guess u've seen "Setting Wizard" from forum.nokia.com
which does sets MMS/GPRS/WAP settings on device....
I want to create an application like that for operators in 1 country.
What steps do i need to do?
 
Login
to reply to this topic.
Forum posts: 26
Here is an example code for disabling the receiving of MMS, more to find in your API doc for CMmsClientMtm:
iMtmReg = CClientMtmRegistry::NewL(*iSession);
iMmsClient = (CMmsClientMtm *) iMtmReg->NewMtmL(KUidMsgTypeMultimedia);
// load the default settings
iMmsClient->SwitchCurrentEntryL(iMmsClient->DefaultSettingsL());
iMmsClient->LoadMessageL();
// change the necessary settings
iMmsClient->SetMmsReceivingMode(EMmsReceivingDisabled);
// save the settings
iMmsClient->SaveMessageL();
Here is an example code for disabling the receiving of MMS, more to find in your API doc for CMmsClientMtm:
iMtmReg = CClientMtmRegistry::NewL(*iSession);
iMmsClient = (CMmsClientMtm *) iMtmReg->NewMtmL(KUidMsgTypeMultimedia);
// load the default settings
iMmsClient->SwitchCurrentEntryL(iMmsClient->DefaultSettingsL());
iMmsClient->LoadMessageL();
// change the necessary settings
iMmsClient->SetMmsReceivingMode(EMmsReceivingDisabled);
// save the settings
iMmsClient->SaveMessageL();
Sorry for posting at wrong place
I guess u've seen "Setting Wizard" from forum.nokia.com
which does sets MMS/GPRS/WAP settings on device....
I want to create an application like that for operators in 1 country.
What steps do i need to do?