Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error unclear happen in "Win32 Release"

Status
Not open for further replies.

mabang

Programmer
Nov 20, 2001
1
DE
Hello,

Im raj.....I new to Visual C++ about a month. So my problem occur when I try to execute an exe file(application error)...a message box out with a sentence of
"the instruction at "0x0042fa9f" reference memory at "0x0000000c". The memory could not be read"

and the second time I close the box it came with another box

"the instruction at "0x00422dfa" reference memory at "0x00000004". The memory could not be read"

what actually happen...Im lack of basic with visual c++

futhermore...I run in debug version it doesnt occur n works perfectly.

urgent!,
raj

 
You have a uninitialized pointer somewhere in your code. When running in the IDE, it's more forgiving (at first), but when you close the Visual Studio, that's when the error appears.

So, look in your code to see where you've declared a pointer but not assigned to to point at something.

Chip H.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top