Hi Yucca,
Thanks for replying.But I cannot read the attachments even if i grant these capabilities to my application.
Any hints??
Type: Posts; User: rafeeqpv; Keyword(s):
Hi Yucca,
Thanks for replying.But I cannot read the attachments even if i grant these capabilities to my application.
Any hints??
Hi All,
I am trying to get the attachments from received emails but without any success. I was trying to read it using the message architecture.I mean I was accessing the CMsvEntry of...
no..you should refer the mbg file for the icon ids since that has the enums(ids) associated with the svgs in generated mif file...In CreateIconL you should mention the filename parameter as the path...
have you really included your mbg file in the source file?
Hi All,
I am facing a strange issue when using custom fonts. For my application, I am adding my gdr file to the fontstore and using it. But while my application is running, other applications...
Hi,
Try this
TZoomFactor devicemap(iCoeEnv->ScreenDevice());
// Set zoom factor at 1 to 1
devicemap.SetZoomFactor(TZoomFactor::EZoomOneToOne);
TInt heightInPixel =...
Hi
Have a look at this link.May be helpful for you..
Hi,
may be the 6th entry in this thread will help you..
Hi
here is the SDK description for E32User CBase 90 panic
CDbColSet* bookColSet = CDbColSet::NewLC();
CDbKey* indexKey = CDbKey::NewLC(); // create index key set
here you have pushed...
Hi,
here is one implementation that will help you
Hi,
derive your container class from CEikBorderedControl rather than from CCoeControl. Then set the listbox rectangles as the following.
TRect rect=Border().InnerRect(Rect()) ;...
note3->ExecuteLD(_L(readBuf1));
just use
note3->ExecuteLD(readBuf1);
I think you have some misunderstanding about the usage of the literal macro.
read this blog...
Hi,
I would like to know the differences between the Web application(usually found in Installs folder) and the Services application(on the main menu itself) (I am using an N73 phone)
What are...
If its not possible, how come listbox like these created?
http://www.cs.helsinki.fi/group/context/presence_new_1.gif
http://www.cs.helsinki.fi/group/context/presence_new_2.gif
I think its...
Hi,
here are the descriptions for these methods from SDK
Actually, if you have any controls(eg: Richtext editor, Listbox, Grid, label) in your parent control(container) , you will have...
Hi,
This link will be of some help to you..The solution here will work for S60 as well as UIQ..just have a look
http://newlc.com/Subclassing-List-Box-in-Symbian.html
regards
Rafeeq
Hi ptrmn,
thanks for giving such nice tips..I will try these settings in my application.
thanks and regards
Rafeeq
Hi,
I am a newbie to the multimedia stuffs. I am developing a voice recording application where i want to save the file at the smallest size possible.What settings(like the sample rate,...
Hi Saad Mansur,
Try debugging your application and find out the exact line causing the crash.BTW do you also have some other controls in your container rather than the...
Hi,
Do you have implemented the CountComponentControls()const and ComponentControl(Tint aIndex) methods in your CSmsAppAppView?
If not ,make the iGTEdUser a data member of your CSmsAppAppView...
Hi,
the following code will work fine if you use id = ESelectionListControl; instead of id = EMarkableList;
////////////////////////////////////////////////////////
// create item array...
Hi,
AVKON 0 panic means that an invalid bitmap index is specified. The Listbox you are using is EAknCtSinglePopupMenuListBox and its item string format is different from what you have using now....
Hi,
try this..not sure whether this will be of any help to you.
CDesCArray* textArray=new(ELeave)CDesCArrayFlat(1);
CleanupStack::PushL(textArray);
TFileName file;...
Hi
hope you have meant should become..
you can use the flag EAknListBoxLoopScrolling to get the loop scrolling effect.
eg:
iListBox->ConstructL(...
Hi,
I am developing an application that fetches the latitude and longitude of locations from a BT GPS Receiver.Now I want to display this location on a digital map.Is there any digital map that...