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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Desperately need help with this error message

Status
Not open for further replies.

EdRev

Programmer
Aug 29, 2000
510
US
Can anybody please help me with this error message? What does it mean and how do I debug it.

"The instruction at "0x779d9405" referenced memory at 0x01009000". The memory could not be read.

I've gone through the code, and I just could not find any reason for any error.

 
Is this error consistent and repeatable?

Looks like a memory access violation. These can be glitchy hardware or flaky C code, or even VB code if somebody got clever. Even a corrupted DLL or EXE file someplace might do this. Unlikely in VBScript though unless you are using some component written in another language.

Can you narrow down what your script was doing when this occurred?
 
This error is consistent every time I run the script. The thing is, I have another script that basically does the same steps and I don't get this error.

It happens after I run a dll that loads our database. The next step is to "consolidate" (calculate) the data. The error happens between this two steps.

I know my script is not the problem bcause when I run this two steps separately, they work fine.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top