Jul 16, 2003 #1 L lester Member Joined May 29, 2003 Messages 9 Can someone pls let me know how can I use an arraylist instead of using array as the code below?? Dim AryChildForm() As frmChild TIA.
Can someone pls let me know how can I use an arraylist instead of using array as the code below?? Dim AryChildForm() As frmChild TIA.
Jul 17, 2003 #2 wyrd Well-known member Joined Aug 23, 2002 Messages 1,408 Location California Dim alist As New ArrayList() alist.Add(frmChild)
Jul 17, 2003 #3 M mutant Well-known member Joined Jan 19, 2003 Messages 1,771 Location Enfield, CT, USA User Rank *Expert* What Wyrd said and remeber that you will have to cast a member of arraylist to the specified type becuase arraylist return objects as the Object type.
What Wyrd said and remeber that you will have to cast a member of arraylist to the specified type becuase arraylist return objects as the Object type.