Hello
I am trying to get a function to repeat itself a number of times but neither way works.
What is the best way to do this?
Thanks
DETAILS...
I tried
Code:
dim thecounter as Integer = 1
while thecounter <100
theRepeatingFunction()
thecounter +=1
end while
and also at the end of the Try, Catch Finally
Code:
Private Sub theRepeatingFunction
Try
'trythis
Catch xyz As Exception
'if error
Finally
'what it does
'make it do it again
theRepeatingFunction()
End Try
End Sub