Hi,
Search with StartupManagement API in wiki and forum nokia, you will get examples and several threads related to that.
Thanks,
Eswar
Type: Posts; User: eswar_illuri; Keyword(s):
Hi,
Search with StartupManagement API in wiki and forum nokia, you will get examples and several threads related to that.
Thanks,
Eswar
Hi,
Look into the following code:
CContactDatabase* cdb = CContactDatabase::OpenL();
CleanupStack::PushL(cdb);
CContactItem* cntitem;
CleanupStack::PushL(cntitem);
Hi,
Use the API as follows:
_LIT(KText,"this is sampletext\n for wrapping");
TInt len= 50;//no.of characters to display in line.
CFont* font =...
Hi,
Try using AknTextUtils::WrapToArrayL(), it'll wrap the text into descriptor array.
Thanks,
Eswar
Hi,
Try following logic:
TUint32 clrindx;
TBuf <10> clr(_L("#FFFFFF"));
clr = clr.Mid(1,clr.Length()-1);
TLex lex(clr);
Hi,
Try the following code:
TBool CMsgObserver::MessageReceivedL(TMsvId aEntryId)
{
CMsvEntry* entry = iSession->GetEntryL(aEntryId);
CleanupStack::PushL(entry);
Hi,
Try to build it from command prompt.
Thanks,
Eswar
Hi,
Did you get any errors while running in emulator? or working fine?
Thanks,
Eswar
Hi,
Go through this link.
Thanks,
eswar
Hi,
What SDK you are using?
Thanks,
Eswar
Hi,
Check this link
Thanks,
Eswar
Hi swarup,
While creating resource for buttons, you need to add both left and right softkeys. If you don't require left or right softkey set it as empty.
check the following code:
...
Hi,
What's the panic you are getting, try to debug it..
Thanks,
Eswar
Hi,
Change your code as follows:
const RAttribute& iconattribute = aAttributes[2];
const RTagInfo& modeliconInfo = iconattribute.Attribute();
HBufC8* tempbuf =...
Hi,
What SDK u are using?
Following is the sample code in .mmp file to create .mbm file:
START BITMAP sample.mbm
TARGETPATH \resource\apps
Hi,
Check the following code:
void CMyClass::CreateAndSendMessageL( const TUid aServiceUid,const TDesC& aAddress )
{
// create empty message
Hi,
Check this link in wiki: How_to_suppress_the_menu_option_of_a_form
Thanks,
Eswar
Hi,
After BrowserLaunch() function call, call exit command to exit your app.
BrowserLaunch(_L("http://www.google.com"));
Exit(); //if you are calling in appui....
Hi,
Include header file APGCLI.H and add lib apgrfx.lib for RApaLsSession.
call the function as follows:
BrowserLaunch(_L("http://www.google.com"));
Thanks
Hi,
what SplashScrTimerCallBack will do? try to change in the callback function.
Thanks,
Eswar
Hi,
TTime is the datatype in CEikDateEditor, have a look into SDK documentation for this api.
Thanks,
Eswar
Hi,
Have a look into this example
for multiple threads usage
Thanks,
Eswar
Hi,
TInt offset= 480-(ht); //here ht=120
ps.iX=(wd-sz.iWidth)/2;
ps.iY = (ht-sz.iHeight)/2;
ps.iY+=offset;
gc.DrawBitmap(TRect(ps,sz),iImage);
Hi,
Check the following code to send SMS using CSendUi:
void CMyClass::CreateAndSendMessageL( const TUid aServiceUid,const TDesC& aAddress )
{
// create empty message
CMessageData* ...
Hi Sunitha,
CEikButtonGroupContainer* cba = CEikButtonGroupContainer::Current();
CleanupStack::PushL(cba);
cba->SetCommandSetL(R_AVKON_SOFTKEYS_EMPTY);
cba->DrawNow();...