Problem with convert TInt8 to TDesC ! Please help me ! Thanks very much!

Login to reply to this topic.
Wed, 2006-02-22 09:28
Joined: 2005-06-21
Forum posts: 107
Hi all !
Please me a way to convert TInt8 to TDesC ! Thanks very much !
------------------------- doctinh113114 ! ------------------------

Wed, 2006-02-22 09:37
Forum Nokia Champion
Joined: 2004-05-26
Forum posts: 732
Re: Problem with convert TInt8 to TDesC ! Please help me ! Thank
Have you tried this:

Code:
TInt8 num = 11;
TBuf<10> buf;
buf.AppendNum(num);
CEikonEnv::Static()->InfoWinL(_L("Debug"), buf);

Wed, 2006-02-22 10:41
Joined: 2005-06-21
Forum posts: 107
Re: Problem with convert TInt8 to TDesC ! Please help me ! Thank
Thanks very much!I can do that!
  • Login to reply to this topic.