Neil
The code example you posted works, Mark is trying to explain you cannot have a SUB inside a Gosub routine
as shown in the last example Mark posted
so you cannot do this
[code:1:24040b07d5]Gosub Someroutine:
Do
Loop
End
Someroutine:
SUB ABC()
' do something
' do something
End Sub
Return[/code:1:24040b07d5]
↧