Thank you so much for your kind help.
regards.
Type: Posts; User: TAHIR; Keyword(s):
Thank you so much for your kind help.
regards.
But TBuf16<50> font_file consists ASCII values. so how to convert my TChar x into its ascii value while assigning to font_file[8].
i tried it this way:
TChar a = 1;
font_file.operator[7](a); //error illegal operator
please help me.
regards.
i have:
TBuf16<50> font_file;
_LIT(KTransFontFile2,"c:\\FONT32.FNT");
font_file.Copy(KTransFontFile2);
this gives:
[0] 'c'
[1] ':'
[2] '\'
[3] 'F'
I have resolved this issue in an alternative way. Thank you very much for your patience and guidelines.
Hi Paul,
Thanks for guidance.
As you instructed my code looks like below:
if ( aKeyEvent.iCode == EKeyLeftArrow && ListBox()->CurrentItemIndex()== 1)
{
// allow the tab control to get the...
can we set CAknIntegerEdwinSettingItem's max value in our source code other then
RESOURCE AVKON_INTEGER_EDWIN r_integer_edwin
{
min = 0;
max = 150;
}
Please explain how to do this if it is...
can we set CAknIntegerEdwinSettingItem's max value in our source code other then
RESOURCE AVKON_INTEGER_EDWIN r_integer_edwin
{
min = 0;
max = 150;
}
Please explain how...
On the setting item list of my ebook reader application following items are shown:
1- Book
2- Chapter No
3- Translation
for 1 and 3 Enumeratedtextpopup has been populated manually. All what i...
On the setting item list of my ebook reader application following items are shown:
1- Book
2- Chapter No
3- Translation
for 1 and 3 Enumeratedtextpopup has been populated manually. All what i...
yes it reads.
TBuf8<10> iValue;
iFile.Read(iValue); gives value i.e "2"
I dont know how to Initialize my TInt readValue with value "2"
as iValue is TBuf8 and I need to typecast/parse it as...
ps: I am new to symbian c++ please help me.
I am storing Setting Item Chapter's value in KStoreFile file:
User::LeaveIfError(iFs.Connect());...
I have a setting item list containing three items:
1) Book Name
2) Chapter Number
3) Section
after selecting these values from list. I initiate 'read book'. So by...
I have a Setting Item List. I want to disable its second (i.e on index==1) item so that it could't show popup with enumerated text.
Is it possible? Please guide me how to do and please refer if...
at the following line application gets crashed and gives message
"No source available for "0x2BAA26"
TBitmapUtil* tBmp = new (ELeave) TBitmapUtil(iBitmap);
iBmpGc->SetPenColor(KRgbRed);...
I try to make an object of CeBook class in EbookContainer class's ConstructL method. I get an error message:
1267444978531 Undefined symbol: 'class CeBook* CeBook::NewL(class CEbookContainer*)
I...
I want to display the contents of a text file on main pane of UI Container. What steps I should follow? The application is like an eBook reader. Please write down necessary steps if possible some...
In my application I want to display text after reading from files. The files are of text in different languages like English, Arabic, Urdu, Hindi etc.
I am new to Symbian c++. Please guide me how...
Dear Gargi Das,
Thank you so much. It worked.
How to go to list-B by Handling the enterKeyPressed event of list-A.
I used AppUi()->ActivateLocalViewL(KView2Id);
where KView2Id is id of container list-B.
It gives an error that AppUi...
How to make our own grid menu. e.g. when we start our application it could show a grid styled menu instead of list menu (like we come to main menu when pressing menu-key from Home-Screen or...