Hi all,

I'd like to run some VBscript code from within VBA, which is fine as I can do so with this type of command... Shell strPathName, vbNormalFocus. But I need to pass some variables to the VBscript code, which I can do via... Shell strPathName & " " & variable1 & " " & variable2, vbNormalFocus. However, all I can pass here are basic variables like strings. What I'd like to be able to pass are classes or data objects. Is that at all possible when running VBscript via the shell command?

Many thanks,

Chris