Click here to Skip to main content
15,903,385 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionMS Access ActiveX VC++ Pin
shiraztk26-Feb-07 3:58
shiraztk26-Feb-07 3:58 
AnswerRe: MS Access ActiveX VC++ Pin
James R. Twine26-Feb-07 4:16
James R. Twine26-Feb-07 4:16 
GeneralRe: MS Access ActiveX VC++ Pin
shiraztk26-Feb-07 4:35
shiraztk26-Feb-07 4:35 
QuestionVisual Studio Just-In-Time Debugger Pin
Try26-Feb-07 3:12
Try26-Feb-07 3:12 
AnswerRe: Visual Studio Just-In-Time Debugger Pin
James R. Twine26-Feb-07 3:18
James R. Twine26-Feb-07 3:18 
AnswerRe: Visual Studio Just-In-Time Debugger Pin
Cedric Moonen26-Feb-07 3:19
Cedric Moonen26-Feb-07 3:19 
GeneralRe: Visual Studio Just-In-Time Debugger Pin
Try26-Feb-07 3:26
Try26-Feb-07 3:26 
GeneralRe: Visual Studio Just-In-Time Debugger Pin
James R. Twine26-Feb-07 4:14
James R. Twine26-Feb-07 4:14 
   Turn on the highest warning level (always a good idea, anyway), and look for things like uninitialized variables, and pay particular attention to any buffers used - ensure that the buffer's length is always being respected.

   Debug builds often "pad" allocated heap and stack memory to look for overruns.  You should run a debug build to completion (exit the process normally, do not stop it in the debugger) to see if you notice any buffer-related issues.

   Another possibility is mixing of debug and release builds of any libraries and/or DLLs.  This is sometimes a good reason to suffix the name of any debug binaries with something like D, so MyDLL.dll becomes MyDLLD.dll, so that this is harder to have happen.

   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

Questionobjective c Pin
deeps_cute26-Feb-07 2:46
deeps_cute26-Feb-07 2:46 
QuestionRe: objective c Pin
Maximilien26-Feb-07 3:37
Maximilien26-Feb-07 3:37 
Questionto display thumbnails on ListView Pin
vasu_sri26-Feb-07 1:22
vasu_sri26-Feb-07 1:22 
AnswerRe: to display thumbnails on ListView Pin
James R. Twine26-Feb-07 1:35
James R. Twine26-Feb-07 1:35 
AnswerRe: to display thumbnails on ListView Pin
Naveen26-Feb-07 2:13
Naveen26-Feb-07 2:13 
QuestionRe: to display thumbnails on ListView Pin
Hamid_RT26-Feb-07 7:26
Hamid_RT26-Feb-07 7:26 
AnswerRe: to display thumbnails on ListView Pin
vasu_sri26-Feb-07 23:34
vasu_sri26-Feb-07 23:34 
GeneralRe: to display thumbnails on ListView Pin
Hamid_RT27-Feb-07 0:55
Hamid_RT27-Feb-07 0:55 
GeneralRe: to display thumbnails on ListView Pin
vasu_sri27-Feb-07 2:54
vasu_sri27-Feb-07 2:54 
GeneralRe: to display thumbnails on ListView Pin
Hamid_RT27-Feb-07 7:36
Hamid_RT27-Feb-07 7:36 
QuestionContext menu Handler Example Pin
Omar Mallat26-Feb-07 1:01
professionalOmar Mallat26-Feb-07 1:01 
AnswerRe: Context menu Handler Example Pin
Cedric Moonen26-Feb-07 1:10
Cedric Moonen26-Feb-07 1:10 
QuestionMouse over control Pin
baerten26-Feb-07 0:26
baerten26-Feb-07 0:26 
QuestionRe: Mouse over control Pin
prasad_som26-Feb-07 1:20
prasad_som26-Feb-07 1:20 
AnswerRe: Mouse over control Pin
baerten26-Feb-07 1:52
baerten26-Feb-07 1:52 
AnswerRe: Mouse over control Pin
James R. Twine26-Feb-07 1:29
James R. Twine26-Feb-07 1:29 
GeneralRe: Mouse over control Pin
baerten26-Feb-07 1:54
baerten26-Feb-07 1:54 

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.