Jul 16, 2003 #1 L lester Newcomer 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 W wyrd Senior Contributor Joined Aug 23, 2002 Messages 1,405 Location California Dim alist As New ArrayList() alist.Add(frmChild)
Jul 17, 2003 #3 M mutant Ultimate Contributor Joined Jan 19, 2003 Messages 1,771 Location Enfield, CT, USA 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.