I'm working on a project, a game engine to be specific, and when the only person who uses vista tries to log in he winds up crashing the server program (RTE 10) when i pull it up and run it from the source in vb (no compile) and he does it i get an odd little message about running out of memory. I reset my vmem to try to fix it, didnt work, same error, but when i tell the thing to continue after the error everything runs fine and he can log in, is there any way to set it up so that when it hits that error it just ignores it and continues automatically?
Comments
: only person who uses vista tries to log in he winds up crashing the
: server program (RTE 10) when i pull it up and run it from the source
: in vb (no compile) and he does it i get an odd little message about
: running out of memory. I reset my vmem to try to fix it, didnt work,
: same error, but when i tell the thing to continue after the error
: everything runs fine and he can log in, is there any way to set it
: up so that when it hits that error it just ignores it and continues
: automatically?
:
Try to place this after the event header sample
sub Command1_Click()
on error resume next
'then the code here
end sub