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

C / C++ / MFC

 
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 
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 
bs1977 wrote:
Since I don't know the size of buffer and if I use _itoa_s then how do I handle "sizeInCharacters" ?


   Short answer - you cannot use _itoa_s(...) correctly or in good faith without knowing the amount of valid buffer space you are passing telling it to use.  toxcct's response is the correct way to handle this problem, if you want to use _itoa_s(...), otherwise switch to the plain old itoa(...) function.

   Note that if you decide to change the function to accept the buffer size and you ever need to use Unicode or TCHAR code, be sure not to confuse the BYTE size of a buffer with its character size (sizeof( char ) == sizeof( BYTE ), but sizeof( wchar_t ) != sizeof( BYTE ) ).

   Peace!



-=- James
Please rate this message - let me know if I helped or not!<HR>If you think it costs a lot to do it right, just wait until you find out how much it costs to do it wrong!
Avoid driving a vehicle taller than you and remember that Professional Driver on Closed Course does not mean your Dumb Ass on a Public Road!
See DeleteFXPFiles

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 
QuestionCan I raise Exception in one thread and handle it in another? Pin
chilituna16-Jan-07 6:51
chilituna16-Jan-07 6:51 
AnswerRe: Can I raise Exception in one thread and handle it in another? Pin
James R. Twine16-Jan-07 7:03
James R. Twine16-Jan-07 7: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.