What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » C++ help :P

C++ help :P
Author: Message:
leito
Senior Member
****

Avatar
Chameleon by KeyStorm

Posts: 720
Reputation: 5
38 / Male / –
Joined: Apr 2003
O.P. RE: C++ help :P
Ok, It work, thanks. I did a method that changes it int to string.

#include <string>
#incluce <sstream>

std::string Extras::intToString(int n){
    std::string s;
    std::stringstream ss;
    ss << n;
    s = ss.str();
    return s;

}

This post was edited on 08-14-2005 at 01:04 AM by leito.
[Image: leonelgalan.png]
08-14-2005 01:04 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
C++ help :P - by leito on 08-13-2005 at 11:08 PM
RE: C++ help :P - by TheBlasphemer on 08-13-2005 at 11:31 PM
RE: C++ help :P - by leito on 08-14-2005 at 01:04 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On