Click here to Skip to main content
15,793,139 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: string formated, as CString.Format() do Pin
Nibu babu thomas15-Jun-08 18:49
Nibu babu thomas15-Jun-08 18:49 
GeneralRe: string formated, as CString.Format() do Pin
bob1697215-Jun-08 19:12
bob1697215-Jun-08 19:12 
GeneralRe: string formated, as CString.Format() do Pin
Nibu babu thomas15-Jun-08 19:33
Nibu babu thomas15-Jun-08 19:33 
GeneralRe: string formated, as CString.Format() do Pin
bob1697216-Jun-08 7:12
bob1697216-Jun-08 7:12 
QuestionRe: string formated, as CString.Format() do Pin
CodingLover15-Jun-08 19:12
CodingLover15-Jun-08 19:12 
AnswerRe: string formated, as CString.Format() do Pin
Nibu babu thomas15-Jun-08 19:29
Nibu babu thomas15-Jun-08 19:29 
NewsRe: string formated, as CString.Format() do Pin
CodingLover15-Jun-08 19:36
CodingLover15-Jun-08 19:36 
GeneralRe: string formated, as CString.Format() do Pin
Dan15-Jun-08 22:20
Dan15-Jun-08 22:20 
CString::Format() is based on sprintf() which is based on printf().
TCHAR strBuffer[ 255 ]; // you can tweak this down to what ever size you need, or use a pointer
_stprintf( strBuffer, _T("%s%d"), _T("Some Data: "), 123 );
// or you can be safe and use
_sntprintf( strBuffer, 255, _T("%s%d"), _T("Some Data: "), 123 );

NewsRe: string formated, as CString.Format() do Pin
CodingLover16-Jun-08 18:16
CodingLover16-Jun-08 18:16 
GeneralRe: string formated, as CString.Format() do Pin
Nelek15-Jun-08 22:11
protectorNelek15-Jun-08 22:11 
AnswerRe: string formated, as CString.Format() do Pin
Stephen Hewitt16-Jun-08 18:10
Stephen Hewitt16-Jun-08 18:10 
GeneralRe: string formated, as CString.Format() do Pin
CodingLover16-Jun-08 18:15
CodingLover16-Jun-08 18:15 
QuestionOld Application - MDB2 Data? Pin
StylezHouse15-Jun-08 12:53
StylezHouse15-Jun-08 12:53 
QuestionError message "One or more breakpoints cannot be set and have been disabled..." VC6.0 Pin
Vaclav_15-Jun-08 4:53
Vaclav_15-Jun-08 4:53 
AnswerRe: Error message "One or more breakpoints cannot be set and have been disabled..." VC6.0 Pin
Chris Losinger15-Jun-08 5:07
professionalChris Losinger15-Jun-08 5:07 
GeneralRe: Error message "One or more breakpoints cannot be set and have been disabled..." VC6.0 Pin
Vaclav_16-Jun-08 5:47
Vaclav_16-Jun-08 5:47 
QuestionHow to add a gey label "Caprion" to a treeView? Pin
CrocodileBuck15-Jun-08 4:29
CrocodileBuck15-Jun-08 4:29 
AnswerRe: How to add a gey label "Caprion" to a treeView? Pin
Michael Dunn15-Jun-08 20:27
sitebuilderMichael Dunn15-Jun-08 20:27 
QuestionWM_ vs NM_ Pin
rp_suman14-Jun-08 20:01
rp_suman14-Jun-08 20:01 
AnswerRe: WM_ vs NM_ PinPopular
Dan14-Jun-08 22:25
Dan14-Jun-08 22:25 
GeneralRe: WM_ vs NM_ Pin
ThatsAlok16-Jun-08 4:33
ThatsAlok16-Jun-08 4:33 
QuestionWhich CD Is it? Pin
Peter Weyzen14-Jun-08 16:37
Peter Weyzen14-Jun-08 16:37 
AnswerRe: Which CD Is it? Pin
Saurabh.Garg15-Jun-08 1:37
Saurabh.Garg15-Jun-08 1:37 
Question(ActiveX) How do I accept a value(parameter) from html Pin
simon alec smith14-Jun-08 10:20
simon alec smith14-Jun-08 10:20 
AnswerRe: (ActiveX) How do I accept a value(parameter) from html Pin
bob1697214-Jun-08 14:17
bob1697214-Jun-08 14:17 

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.