Hello all,
I want to bring VB scripting support to my MFC aplication. Therfore I need
to provide COM interface to my C++ functions. Now the problem seams that VB
script does not provide reference types or pointers. But how can I have a
function in VB-script that modifies more than one variable and retuns it to
the calling function?
Like C++ function:
void MyFunction(int iValue, int &iWillModifyA, long & lWillModifyB);
How can I express this in VB-script?
Best Regards
Thomas