newlc.com
Articles Only
Forum Only
Community
World-Wide Web
Home
News
Tutorials
Reviews
Downloads
Professional Services
Forums
Newsletter
Blog
About us
Last forum posts
Home
::
Forums
::
Development
::
Symbian C++
User login
Username:
*
Password:
*
Create new account
Request new password
Featured pages
Configure your PC for Symbian development
Getting started with Symbian development
Symbian OS Error Codes
Common products UIDs
Nokia S60 SDK
Featured Software
NlMakesis
Y-Browser
Y-Tasks
Active users (last 30 days)
User
Score
rbrunner
54
eric
54
Andreas
44
sandeepmhptr
41
alh
32
more
Feeds
More feeds...
Problem with convert TInt8 to TDesC ! Please help me ! Thanks very much!
Login
to reply to this topic.
Wed, 2006-02-22 09:28
doctinh113
Joined: 2005-06-21
Forum posts: 107
Hi all !
Please me a way to convert TInt8 to TDesC ! Thanks very much !
------------------------- doctinh113114 ! ------------------------
Login
or
register
to post in forums
Wed, 2006-02-22 09:37
vin2ktalks
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);
Home Page
Forum Nokia Blogs
 
Wed, 2006-02-22 10:41
doctinh113
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.
Forum posts: 732
TBuf<10> buf;
buf.AppendNum(num);
CEikonEnv::Static()->InfoWinL(_L("Debug"), buf);
Forum posts: 107