Click to See Complete Forum and Search --> : Simple question...


rghthnrblmrc
12-08-2006, 01:34 PM
In VBScript, can Class objects be placed inside arrays?

so_is_this
12-08-2006, 06:02 PM
As is always the case with any object, only a pointer to the object is stored in the variable (or array element) of your choice:

Set objPointer = New className

rghthnrblmrc
12-08-2006, 06:06 PM
Thanks