Hi,
I've got some code which uses various "On Error" statements to try to trap
some errors in VB6. When I try it on one machine (WinXP SP1) it works fine,
but on another machine (WinXP SP2) it fails to trap the error and so the
code fails. e.g.
On Error Resume Next
debug.print 3/0
Would fail on the "debug" line.
On Error Goto Fred
debug.print 3/0
Fred:
would also fail on the "debug" line
Any suggestions??
Without this basic error trapping the whole application is screwed.
Thanks
Andy