Click here to Skip to main content
15,924,901 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: COnverting char to int and retaining value Pin
GflPower4-Apr-04 19:12
GflPower4-Apr-04 19:12 
GeneralCString::Format() Pin
Oriented2-Apr-04 12:33
Oriented2-Apr-04 12:33 
GeneralRe: CString::Format() Pin
Michael Dunn2-Apr-04 13:57
sitebuilderMichael Dunn2-Apr-04 13:57 
GeneralRe: CString::Format() Pin
gUrM33T2-Apr-04 15:25
gUrM33T2-Apr-04 15:25 
GeneralRe: CString::Format() Pin
Prakash Nadar2-Apr-04 16:19
Prakash Nadar2-Apr-04 16:19 
GeneralRe: CString::Format() Pin
Graham Bradshaw2-Apr-04 21:53
Graham Bradshaw2-Apr-04 21:53 
GeneralRe: CString::Format() Pin
Prakash Nadar3-Apr-04 2:27
Prakash Nadar3-Apr-04 2:27 
GeneralRe: CString::Format() Pin
Gary R. Wheeler3-Apr-04 2:55
Gary R. Wheeler3-Apr-04 2:55 
If you are using VS.NET 2002 or later, the CString class includes the member function AppendFormat, which does what you are asking.

If you are using VC6, you will need to do something like this:
CString str,tmp;
str = ";kj;lak;sajlg";
tmp.Format(" qer23 %d asdgsgd", var);
str += tmp;



Software Zen: delete this;
GeneralScroll Bar Pin
Oriented2-Apr-04 12:16
Oriented2-Apr-04 12:16 
GeneralRe: Scroll Bar Pin
gUrM33T2-Apr-04 15:33
gUrM33T2-Apr-04 15:33 
GeneralParse CHAR pointers Pin
gls2ro2-Apr-04 11:55
gls2ro2-Apr-04 11:55 
GeneralRe: Parse CHAR pointers Pin
John R. Shaw2-Apr-04 12:11
John R. Shaw2-Apr-04 12:11 
GeneralRe: Parse CHAR pointers Pin
gUrM33T2-Apr-04 15:28
gUrM33T2-Apr-04 15:28 
GeneralRead Write ANSI/C Pin
gls2ro2-Apr-04 10:44
gls2ro2-Apr-04 10:44 
GeneralRe: Read Write ANSI/C Pin
Anonymous2-Apr-04 11:08
Anonymous2-Apr-04 11:08 
Generalchar ** problem (ANSI C) Pin
kfaday2-Apr-04 6:44
kfaday2-Apr-04 6:44 
GeneralRe: char ** problem (ANSI C) Pin
David Crow2-Apr-04 6:53
David Crow2-Apr-04 6:53 
GeneralRe: char ** problem (ANSI C) Pin
kfaday2-Apr-04 7:15
kfaday2-Apr-04 7:15 
GeneralRe: char ** problem (ANSI C) Pin
John R. Shaw2-Apr-04 10:09
John R. Shaw2-Apr-04 10:09 
GeneralRe: char ** problem (ANSI C) Pin
kfaday3-Apr-04 4:54
kfaday3-Apr-04 4:54 
GeneralRe: char ** problem (ANSI C) Pin
toothless boots2-Apr-04 13:19
toothless boots2-Apr-04 13:19 
GeneralGetting thread timing Pin
Brian R2-Apr-04 5:50
Brian R2-Apr-04 5:50 
GeneralRe: Getting thread timing Pin
Alexander M.,2-Apr-04 6:05
Alexander M.,2-Apr-04 6:05 
GeneralUnicode Pin
Simon Poon2-Apr-04 5:30
Simon Poon2-Apr-04 5:30 
GeneralRe: Unicode Pin
Alexander M.,2-Apr-04 6:03
Alexander M.,2-Apr-04 6:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.