AdamWhitehouse
Programmer
This is probably easy to some of you out there? I am trying to call sub routines from an array, but can not seem to manage it, ie:
dim count(50)
dim i
count=count+1
call step(count)
Private sub count(1)
end sub
private sub count(2)
end sub
etc: This obviously doesn't work, but is there a way of acheiving this, any help enthusiastically appreciated.
Adam
dim count(50)
dim i
count=count+1
call step(count)
Private sub count(1)
end sub
private sub count(2)
end sub
etc: This obviously doesn't work, but is there a way of acheiving this, any help enthusiastically appreciated.
Adam