Greetings,

This must seem like a really basic question, but how would
one add ints, doubles, etc... to a TString?

For example say I have:


Code:
int server = 8888;
double top = 38.3534535361;

tstring serverTString = "Server: "
tstring topTString = "Top: "
How could I end up with the following:

Code:
tmp = "Server:8888, Top: 38.3534535361";
I am new to this, but I suspect I would have
to use something like swprintf?