meduffy Posted June 17, 2004 Posted June 17, 2004 Hi everyone, Does anyone know how to populate an arraylist using a query from an Access Database? Once the arraylist is loaded, I will be doing an accumulative calculation for charting using vb.net. Appreciate anyone's help. Thanks Quote
Moderators Robby Posted June 17, 2004 Moderators Posted June 17, 2004 dr bieng your dataReader.... Dim arr As New ArrayList While dr.Read() arr.Add(Convert.ToInt32(dr("myIntColumn"))) End While Quote Visit...Bassic Software
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.