Click here to Skip to main content
16,017,690 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: how dose this happen? need your help Pin
ewighell12-Oct-05 23:03
ewighell12-Oct-05 23:03 
AnswerRe: how dose this happen? need your help Pin
Eytukan13-Oct-05 1:40
Eytukan13-Oct-05 1:40 
QuestionHow to use a class written in WTL 7.0 in an MFC application Pin
cauvang12-Oct-05 15:01
cauvang12-Oct-05 15:01 
AnswerRe: How to use a class written in WTL 7.0 in an MFC application Pin
Prakash Nadar13-Oct-05 15:21
Prakash Nadar13-Oct-05 15:21 
Questionwaht does "Invalid Address specified to RtlValidateHeap" mean? Pin
greenwyx12-Oct-05 14:56
greenwyx12-Oct-05 14:56 
AnswerRe: waht does "Invalid Address specified to RtlValidateHeap" mean? Pin
Chris Losinger12-Oct-05 15:14
professionalChris Losinger12-Oct-05 15:14 
GeneralRe: waht does "Invalid Address specified to RtlValidateHeap" mean? Pin
greenwyx12-Oct-05 15:27
greenwyx12-Oct-05 15:27 
GeneralRe: waht does "Invalid Address specified to RtlValidateHeap" mean? Pin
Chris Losinger12-Oct-05 15:43
professionalChris Losinger12-Oct-05 15:43 
this is definitely a difficult thing to track down. basically, you have to make sure any pointer you use points to a valid address before you write to it.

basic things to start with: make sure your pointers are initialized to NULL or a valid value before you use them. take a good close look at any code that dereferences a pointer (*(ptr) = ..; , ptr[x]=...; or ptr->... = ...;) - make sure that code isn't running outside the limits of any memory you've allocated dynamically...


Cleek | Image Toolkits | Thumbnail maker

GeneralRe: waht does "Invalid Address specified to RtlValidateHeap" mean? Pin
greenwyx12-Oct-05 15:51
greenwyx12-Oct-05 15:51 
GeneralRe: waht does "Invalid Address specified to RtlValidateHeap" mean? Pin
Prakash Nadar13-Oct-05 6:04
Prakash Nadar13-Oct-05 6:04 
GeneralRe: waht does "Invalid Address specified to RtlValidateHeap" mean? Pin
greenwyx13-Oct-05 14:36
greenwyx13-Oct-05 14:36 
QuestionProcessor Information 32-bit app on 64-bit Machine Pin
sergioh7812-Oct-05 14:32
sergioh7812-Oct-05 14:32 
QuestionSubclassing MFC controls for ActiveX Pin
gaarons12-Oct-05 13:03
gaarons12-Oct-05 13:03 
QuestionNeed Help With Calculation Pin
WackoWolf12-Oct-05 12:40
WackoWolf12-Oct-05 12:40 
AnswerRe: Need Help With Calculation Pin
Roger Allen12-Oct-05 13:38
Roger Allen12-Oct-05 13:38 
AnswerRe: Need Help With Calculation Pin
David Crow13-Oct-05 3:19
David Crow13-Oct-05 3:19 
QuestionAccelerator key issue in hosted ActiveX control Pin
Ian Bowler12-Oct-05 12:35
Ian Bowler12-Oct-05 12:35 
QuestionCResourceException Pin
LighthouseJ12-Oct-05 12:08
LighthouseJ12-Oct-05 12:08 
QuestionMultiLingual Resource Pin
jim45612-Oct-05 11:54
jim45612-Oct-05 11:54 
Questionmalloc and free problem. Pin
Jader8912-Oct-05 11:47
Jader8912-Oct-05 11:47 
AnswerRe: malloc and free problem. Pin
Jader8912-Oct-05 11:51
Jader8912-Oct-05 11:51 
AnswerRe: malloc and free problem. Pin
Anonymous12-Oct-05 12:02
Anonymous12-Oct-05 12:02 
GeneralRe: malloc and free problem. Pin
Jader8912-Oct-05 12:08
Jader8912-Oct-05 12:08 
GeneralRe: malloc and free problem. Pin
LighthouseJ12-Oct-05 12:10
LighthouseJ12-Oct-05 12:10 
AnswerRe: malloc and free problem. Pin
sunit512-Oct-05 20:43
sunit512-Oct-05 20:43 

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.