M
Mark
Hi NG
I have a question about assignment of variables by reference or value.
I have a module where a collection C is defined as public.
In my form i want to use that information. Because i use a callback e.g.
button_click() i can not parse C in to the function. Instead i do the
following in the button_click() callback
dim A as collection
A = modSomething.C
Is A then a copy of C or is it a reference?
For performance reasons i would like it to be a reference.
Regards
Mark
I have a question about assignment of variables by reference or value.
I have a module where a collection C is defined as public.
In my form i want to use that information. Because i use a callback e.g.
button_click() i can not parse C in to the function. Instead i do the
following in the button_click() callback
dim A as collection
A = modSomething.C
Is A then a copy of C or is it a reference?
For performance reasons i would like it to be a reference.
Regards
Mark