Robert_Zenz
Well-known member
Hello.
I want to set a reference to a variable similar to ByRef.
I'm using some global objects which are declared in each form like
.
The problem is, this is copying the momentary value of the object and is not setting a 'real' reference.
Does anybody know how to set such a reference similar to a pointer?
Thanks for the help,
Bobby
I want to set a reference to a variable similar to ByRef.
I'm using some global objects which are declared in each form like
VB.NET:
Private myObj as Obj = GlobaleConstant.bla.globObj
The problem is, this is copying the momentary value of the object and is not setting a 'real' reference.
Does anybody know how to set such a reference similar to a pointer?
Thanks for the help,
Bobby