Posted by Jeffrey_2Pi on July 29, 1999 at 14:10:28:
In Reply to: more errors posted by Milly Pan on July 29, 1999 at 13:17:38:
Usually this happens when you try and access NULL...as in:
struct Blah{ int data };
Blah* pointer = NULL;
pointer->data; //Access violation 0x00005c or whatever the code is...