R
Ralph
Hello everyone.
How is the function below accomplished in vb.net?
*************************
private function test
on error goto here
for i =0 to x
do something
do some more
do last bit
next
exit function
here:
if the error is this then
resume next 'jump back into the for/next loop
endif
end function
*************************
How is the function below accomplished in vb.net?
*************************
private function test
on error goto here
for i =0 to x
do something
do some more
do last bit
next
exit function
here:
if the error is this then
resume next 'jump back into the for/next loop
endif
end function
*************************