is it possible to have the same string and counter values in a sub routine, avilable to all the sub routines in that module? if so how?
how can I get textbox1 to display the word hi using two subs?
for example:-
sub one()
dim sell as string
sell = "hi"
end sub
sub two()
textbox1.text = sell
end sub
smiler44
how can I get textbox1 to display the word hi using two subs?
for example:-
sub one()
dim sell as string
sell = "hi"
end sub
sub two()
textbox1.text = sell
end sub
smiler44