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
Y-Browser
Y-Tasks
Active users (last 30 days)
User
Score
rbrunner
73
eric
61
alh
60
praveen.nitdgp@...
42
jupitar
38
more
Feeds
More feeds...
TInt to TBuf How ....?
Login
to reply to this topic.
Mon, 2006-09-18 18:54
chityala_shailesh
Joined: 2006-03-23
Forum posts: 7
How to Convert TInt Values to TBuf ?
* TLex can convert TBuf -> TInt use Val
But i Want Opposite
Login
or
register
to post in forums
Mon, 2006-09-18 19:44
rbrunner
Joined: 2005-11-20
Forum posts: 1058
Re: TInt to TBuf How ....?
TBuf::Num
René Brunner
 
Tue, 2006-09-19 11:31
votranminhthuy
Joined: 2006-07-21
Forum posts: 20
Re: TInt to TBuf How ....?
You can do:
TInt num;
num = 6;
TBuf<2> numBuf;
numBuf.AppendNum(num);
 
Login
to reply to this topic.
Forum posts: 1058
René Brunner
Forum posts: 20
TInt num;
num = 6;
TBuf<2> numBuf;
numBuf.AppendNum(num);