Gustav Brock
gustav at cactus.dk
Tue May 6 06:28:14 CDT 2003
Hi Ryan
Well, that explains.
For the records, one way of inhibiting such a line is to insert a line:
On Error Goto 0
somewhere ahead of the lines you debug but after any other line with
"On Error ..." .
/gustav
> That's what confused me, but I see that the code I inherited had 'On Error
> resume next' hidden away...I think that clears it up!
>> Error found.
>> I was calling a sub and not a function...seems to work now.
> But why didn't that throw an 2425 error?
> /gustav
>> But when I use:
>> strname = First then Second then Third etc etc (example)
>> Eval("Update_" & strName & "()")
>> although I get no error, the function isn't called?