NlMakesis Y-Browser Y-Tasks
pirosl
Thanks and RegardsCodePupil__________________________You are I and I am he .. !!
"To the question of your life , you are the only Answer. To the problems of your life,you are the only Solution".
Forum posts: 982
pirosl
Forum posts: 105
you have to convert from number to string....
following piece of code would help you..
TInt MyNum = 10;
TBuf<20> MyString;
MyString.Format(_L("Value is %d"),MyNum);
User::InfoPrint(MyString);
//output : Value is 10
Cheers!!
CodePupil
Thanks and Regards
CodePupil
__________________________
You are I and I am he .. !!
Forum posts: 141
Another option is,
TBuf<15> buf;
buf.Num(IMEI);
CEikonEnv::Static()->AlertWin(buf);
Forum posts: 155
TInt MyNum = 10;
TBuf<20> MyString;
MyString.Format(_L("Value is %d"),MyNum);
User::InfoPrint(MyString);
//output : Value is 10
Hi
I tried this one but I m getting the error on emulator i.e. User 11.
Pls help me out.
Regards
Isha
"To the question of your life , you are the only Answer. To the problems of your life,you are the only Solution".
Forum posts: 105
it is tested code...
please check whether you cross descriptor's limit...
viz. TBuf<20> MyString;
MyString can't hold string having length greater than 20...
please check this out....and let me know...
Cheers!!
CodePupil
Thanks and Regards
CodePupil
__________________________
You are I and I am he .. !!