server.execute doesnt work. what does work (compliments of "vbs in a nutshell") is
dim S
S = "sub Proc2 : "
S = S & "dim x : "
S = S & "x = 10 : "
S = S & "MsgBox x : "
S = S & "End Sub "
Execute S
Proc2
as i understand it executing "s" only uses the code that "s" is linked to, the variable "s" does nothing. once you have executed then you still have to do something with it. in this case call the sub.
i havent tried this in my case yet, havent had the time yet. will do so soon i hope.