Keep in mind I am fairly new to vbs. What I am trying to pass an object to a function.
So I have
function1 () 'this function works
...
create object
...
return object
function2 (object) 'need to be able to pass object to this function and use it
object.sometask
So I have
function1 () 'this function works
...
create object
...
return object
function2 (object) 'need to be able to pass object to this function and use it
object.sometask