MoleDirect
Technical User
ok... here is an example..
I have a script that is something like this:
is there any way to prevent this?
I have a script that is something like this:
Code:
call main
function main
a = 1
msgbox ("A = " & a) ' and this would show A = 1
call nextone
function nextone
msgbox ("A = " & a) ' now, this shows A =
end function ' with A no longer having a value.
is there any way to prevent this?