lester Posted July 17, 2003 Posted July 17, 2003 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. Quote
wyrd Posted July 17, 2003 Posted July 17, 2003 Dim alist As New ArrayList() alist.Add(frmChild) :confused: Quote Gamer extraordinaire. Programmer wannabe.
*Experts* mutant Posted July 17, 2003 *Experts* Posted July 17, 2003 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. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.