
Passing By Reference myfunc(ByRef <x>)
Norman,
Actually it is impossible to pass an object to a function "by val" unless
you write your own functions to manually create a copy of your object. Even
if you use the "By Val" qualifier the object is passed "By Ref"
Dan
Quote:
> I would like to create my objects once and pass them to
> procedures and functions by reference. Do I need to
> prefix my variables with Ref or is the default by
> reference?