Hi, please give me an answer if someone konws.
I inherited a class from AknEnumeratedTextPopupSettingItem, and in its function HandleSettingPageEventL(), I found that:
1. After we change the...
Type: Posts; User: liuajie; Keyword(s):
Hi, please give me an answer if someone konws.
I inherited a class from AknEnumeratedTextPopupSettingItem, and in its function HandleSettingPageEventL(), I found that:
1. After we change the...
According to the sample 'WaveGen', we know how to get the new value of a volumn item in the setting item list. But how to get the new value of an enumerated text item in a setting item list?
I...
What's the difference between CodeWarrior for Symbian Personal Eidition and Profeesional Edition?
I think CodeWarrior Personal Edition has the same function as Visual C++ 6.0, but CodeWarrior...
I never used CodeWarrior. I only found a free version of CodeWarrior: CodeWarrior Development Tools for Windows, Evaluation Edition, v8. Can I use this free version to create some Symbian...
I just downloaded Borland C++ Mobile Edition for Series 60, Nokia Edition from nokia website. But after installation, I found the series60 SDK was not integrated into C++Builder IDE. Can someone tell...
I met the same problem. What DID nokia guy do?
I want to implement a 2-dimension fixed array. I know for a 1-dimension array, I just change the following:
int bMan[4];
to:
TFixedArray<TInt,4> bMan;
But for a 2-dimension array, for...
How to use a .jpg file instead of .mbm file as the icons on ListBox? Just like the 'Photo Album'. Can someone give me some detailed information? Thanks very much1
OK, I see. I made a mistake.
In series60, how to implement dynamic menu in a multi_view applicaition?
By using 'series 60 appWizard', I created an application with 2 views. But, the function DynInitMenuPaneL() in the UI class...
Hi, you can use the following code:
iCoeEnv->FsSession().Connect();
//------------------------------------------------------
// read with RFileReadStream
RFileReadStream reader;...
Hi, I am trying to write something at the end of the file KFileName by RFileWriteStream, but how to set the offset? Thanks for help. (in GUI environment)
//--------------------------------------...
Only .rsc, .app, .aif, .dll are useful in target machine
In Series60, I use Class CEikFormattedCellListBox to implement the listbox which has large icon and text. The following code can set icons of the listbox:
//----------my code----------------...
Hi, I met the same problem of yours. Have you solved this problem?
Seems like the following code caused exceptions:
// my code
_LIT(KMultiBitmapFilename,"c:\\System\\Apps\\mybmp.mbm");
CFbsBitmap* bitmap = new (ELeave) CFbsBitmap();...
SDK60: In 7650, what's the TkeyEvent.icode of key 'OK'? Thanks.
I am trying to use CAknDoubleLargeStyleLisBox, but can it display different icon in each item?
Hi, you should put this line:
// Set icon array.
iGrid->ItemDrawer()->FormattedCellData()->SetIconArrayL( icons );
after you pop those nine icons. i.e., the following should be ok:
...
Hi, maybe you can debug your application step by step to see where the error came from.
By the way, do you know how to add some texts in each item? (in class CAknGMSStyleGrid).
I wanna make a program like 'Image'(photo album) in 7650. According to demo application 'Grid' in SDK60, I used class CAknGMSStyleGrid. But, how to display some different text in each item?
Thanx...
Hi, because this uses a .dll, then you have to compile it as following steps:
1)bldmake bldfiles
2)abld build wins
3)abld freeze wins
4)abld build wins
then it's ok.
In SDK 60 (for C++), I use the following commands to make .sis file:
1. bldmake bldfiles
2. abld build armi urel
3. makesis filename.pkg
It works good for most of the demo applications, but as...
Does 7650 support MIDP? And I'd like to develope applications in 7650, what SDK should I use? Thanks.
In VC++, how to convert a TText varible to TInt type? (I input a number into CEikEdwin, but I want to use it as TInt instead of TDes).