Click here to Skip to main content
15,902,198 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: What am I doing wrong? Pin
Mark Salsbery6-Dec-06 9:16
Mark Salsbery6-Dec-06 9:16 
GeneralRe: What am I doing wrong? Pin
MyFathersSon8-Dec-06 5:44
MyFathersSon8-Dec-06 5:44 
Questionvsprintf and string. Pin
vikramlinux6-Dec-06 2:18
vikramlinux6-Dec-06 2:18 
AnswerRe: vsprintf and string. Pin
Nibu babu thomas6-Dec-06 2:27
Nibu babu thomas6-Dec-06 2:27 
GeneralRe: vsprintf and string. Pin
vikramlinux6-Dec-06 2:36
vikramlinux6-Dec-06 2:36 
Answeruse PRE tags Pin
toxcct6-Dec-06 2:32
toxcct6-Dec-06 2:32 
AnswerRe: vsprintf and string. Pin
prasad_som6-Dec-06 2:36
prasad_som6-Dec-06 2:36 
GeneralRe: vsprintf and string. Pin
vikramlinux6-Dec-06 2:39
vikramlinux6-Dec-06 2:39 
void Log(const string& format="", ...)
{
 char buffer[1024]="";
 va_list args;
 va_start(args,format);
 int len= vsprintf(buffer, format.c_str(), args);
 va_end(args);
 cout<<buffer; 
}


This is not working !
AnswerRe: vsprintf and string. Pin
prasad_som6-Dec-06 2:47
prasad_som6-Dec-06 2:47 
GeneralRe: vsprintf and string. Pin
Zac Howland6-Dec-06 3:29
Zac Howland6-Dec-06 3:29 
GeneralRe: vsprintf and string. Pin
David Crow6-Dec-06 5:27
David Crow6-Dec-06 5:27 
AnswerRe: vsprintf and string. Pin
Stephen Hewitt6-Dec-06 15:17
Stephen Hewitt6-Dec-06 15:17 
QuestionC3861 _L identifier not found Pin
uday kiran janaswamy6-Dec-06 2:01
uday kiran janaswamy6-Dec-06 2:01 
QuestionRe: C3861 _L identifier not found Pin
prasad_som6-Dec-06 2:14
prasad_som6-Dec-06 2:14 
AnswerRe: C3861 _L identifier not found Pin
Cedric Moonen6-Dec-06 2:16
Cedric Moonen6-Dec-06 2:16 
AnswerRe: C3861 _L identifier not found Pin
Nibu babu thomas6-Dec-06 2:18
Nibu babu thomas6-Dec-06 2:18 
QuestionThread exit handler Pin
harsha_12346-Dec-06 1:59
harsha_12346-Dec-06 1:59 
AnswerRe: Thread exit handler Pin
Mark Salsbery6-Dec-06 6:30
Mark Salsbery6-Dec-06 6:30 
Questioncan we have a toolbar on dialog Pin
cancerion6-Dec-06 1:42
cancerion6-Dec-06 1:42 
AnswerRe: can we have a toolbar on dialog Pin
toxcct6-Dec-06 1:46
toxcct6-Dec-06 1:46 
AnswerRe: can we have a toolbar on dialog Pin
Nibu babu thomas6-Dec-06 2:20
Nibu babu thomas6-Dec-06 2:20 
AnswerRe: can we have a toolbar on dialog Pin
Hamid_RT6-Dec-06 17:47
Hamid_RT6-Dec-06 17:47 
Questionquestioncan we have a toolbar on dialog Pin
cancerion6-Dec-06 1:41
cancerion6-Dec-06 1:41 
AnswerRe: questioncan we have a toolbar on dialog Pin
toxcct6-Dec-06 1:45
toxcct6-Dec-06 1:45 
QuestionRemoveDriveByLetter ( save removal of the USB) Pin
madhukarreddy6-Dec-06 1:33
madhukarreddy6-Dec-06 1:33 

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.