Possible to Store Objects in Arrays? 
Author Message
 Possible to Store Objects in Arrays?

I have several objects which I wish to store in a list
form, but every time I try to put them in an array the
de{*filter*} yells at me with an object doesnt support this
property or method.

quick example of problem

  Class tester
  End Class

  Dim te2
  set te2 = new tester

  Dim myArray(2)
  myArray(1) = te2

Anyone have a work around, or know what I'm doing
wrong...dont really want ot implement a list myself today



Sat, 17 Jan 2004 03:31:28 GMT  
 Possible to Store Objects in Arrays?
I have several objects which I wish to store in a list
form, but every time I try to put them in an array the
de{*filter*} yells at me with an object doesnt support this
property or method.

quick example of problem

  Class tester
  End Class

  Dim te2
  set te2 = new tester

  Dim myArray(2)
  myArray(1) = te2

Anyone have a work around, or know what I'm doing
wrong...dont really want ot implement a list myself today



Sat, 17 Jan 2004 03:31:31 GMT  
 Possible to Store Objects in Arrays?
nevermind :)
not enough caffiene today...set baby..set
Quote:
>-----Original Message-----
>I have several objects which I wish to store in a list
>form, but every time I try to put them in an array the
>de{*filter*} yells at me with an object doesnt support this
>property or method.

>quick example of problem

>  Class tester
>  End Class

>  Dim te2
>  set te2 = new tester

>  Dim myArray(2)
>  myArray(1) = te2

>Anyone have a work around, or know what I'm doing
>wrong...dont really want ot implement a list myself today
>.



Sat, 17 Jan 2004 03:38:00 GMT  
 Possible to Store Objects in Arrays?
You must say

Set myArray(1) = te2

I think.

Cheers,

Adnan


Quote:
> I have several objects which I wish to store in a list
> form, but every time I try to put them in an array the
> de{*filter*} yells at me with an object doesnt support this
> property or method.

> quick example of problem

>   Class tester
>   End Class

>   Dim te2
>   set te2 = new tester

>   Dim myArray(2)
>   myArray(1) = te2

> Anyone have a work around, or know what I'm doing
> wrong...dont really want ot implement a list myself today



Mon, 19 Jan 2004 23:42:47 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. How to store object to an object array?

2. Class Objects stored into session variables, not possible?

3. Storing arrays in Application object

4. Storing arrays in Application object

5. Storing arrays/objects in application variables

6. Storing objects in collection/array

7. Passing names of arrays stored in session object to function

8. Storing an array in a Dictionary object

9. Problem with arrays stored in objects

10. array object property possible?

11. Array of Form Objects - Possible???

12. storing array items (objects) in between macros ...

 

 
Powered by phpBB® Forum Software