Click here to Skip to main content
15,896,912 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: LIBPNG DLL with VS 2005 Pin
Christian Graus16-Jan-07 13:18
protectorChristian Graus16-Jan-07 13:18 
GeneralRe: LIBPNG DLL with VS 2005 Pin
Bartosz Bien16-Jan-07 13:42
Bartosz Bien16-Jan-07 13:42 
Questionpointer to active document Pin
RalfPeter16-Jan-07 11:18
RalfPeter16-Jan-07 11:18 
AnswerRe: pointer to active document Pin
Stephen Hewitt16-Jan-07 11:55
Stephen Hewitt16-Jan-07 11:55 
GeneralRe: pointer to active document Pin
RalfPeter16-Jan-07 12:26
RalfPeter16-Jan-07 12:26 
AnswerRe: pointer to active document Pin
Stephen Hewitt16-Jan-07 12:28
Stephen Hewitt16-Jan-07 12:28 
AnswerRe: pointer to active document [modified] Pin
Mark Salsbery16-Jan-07 13:05
Mark Salsbery16-Jan-07 13:05 
Question_itoa vs _itoa_s [modified] Pin
bs197716-Jan-07 11:08
bs197716-Jan-07 11:08 
I have requiremnt where someone is passing me pointer to a buffer and I have to return value converted to that bufffer. I'm worried about buffer overrun. Here are two functions available for this..
_itoa(int value,char *buffer,size_t, int radix);
_itoa_s(int value,char *buffer,size_t, sizeInCharacters,int radix);

Here is my current function :
DWORD GetMessageSize(char *FileName, char *Size){
int intsize;
// do operation on file and get intsize
_itoa(intsize,Size,10);
return 0;
}

Since I don't know the size of buffer and if I use _itoa_s then how do I handle "sizeInCharacters" ?

Any help appreciated.
thanks

thanks



-- modified at 17:14 Tuesday 16th January, 2007
AnswerRe: _itoa vs _itoa_s Pin
toxcct16-Jan-07 11:17
toxcct16-Jan-07 11:17 
AnswerRe: _itoa vs _itoa_s Pin
James R. Twine16-Jan-07 11:51
James R. Twine16-Jan-07 11:51 
QuestionCapturing Messages Application Pin
Revant Jain16-Jan-07 10:31
Revant Jain16-Jan-07 10:31 
AnswerRe: Capturing Messages Application Pin
David Crow16-Jan-07 10:40
David Crow16-Jan-07 10:40 
QuestionProblem with GetFocus() Pin
Jader8916-Jan-07 10:17
Jader8916-Jan-07 10:17 
AnswerRe: Problem with GetFocus() Pin
Mark Salsbery16-Jan-07 10:34
Mark Salsbery16-Jan-07 10:34 
GeneralRe: Problem with GetFocus() Pin
Jader8916-Jan-07 10:59
Jader8916-Jan-07 10:59 
Questionlaunch 2 exes with one..... Pin
homerjaylol16-Jan-07 7:31
homerjaylol16-Jan-07 7:31 
QuestionRe: launch 2 exes with one..... Pin
David Crow16-Jan-07 7:34
David Crow16-Jan-07 7:34 
AnswerRe: launch 2 exes with one..... Pin
toxcct16-Jan-07 8:03
toxcct16-Jan-07 8:03 
GeneralRe: launch 2 exes with one..... Pin
David Crow16-Jan-07 8:06
David Crow16-Jan-07 8:06 
GeneralRe: launch 2 exes with one..... Pin
toxcct16-Jan-07 8:10
toxcct16-Jan-07 8:10 
AnswerRe: launch 2 exes with one..... Pin
James R. Twine16-Jan-07 8:03
James R. Twine16-Jan-07 8:03 
GeneralRe: launch 2 exes with one..... Pin
#realJSOP16-Jan-07 8:36
professional#realJSOP16-Jan-07 8:36 
GeneralRe: launch 2 exes with one..... Pin
James R. Twine16-Jan-07 8:45
James R. Twine16-Jan-07 8:45 
QuestionThunks Pin
Waldermort16-Jan-07 7:16
Waldermort16-Jan-07 7:16 
AnswerRe: Thunks Pin
James R. Twine16-Jan-07 7:28
James R. Twine16-Jan-07 7:28 

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.