i have this code:
my problem is that called_sub sets variable's value, but after the call, the calling statement can't recall that variable's value. is there any way to get around this?
thanks.
Code:
call called_sub
msgbox x
wscript.quit
sub called_sub
x = x + 1
end sub
thanks.