rekam Posted October 15, 2003 Posted October 15, 2003 Helloooo ! I would like to do a simple operation with array and XML, but I'm a newbie and I don't know how to do... I have an XML file with a <key> tag and a <value> tag. One <key> can contain many <value>. What I want is to have a bidimensional array which have the <key> for the first dimension and the <value> for the second. I think there's something I don't understand with array or collection. I tried to use them but I have always a NullReferenceException. Somebody has an idea:D ? Quote
rekam Posted October 29, 2003 Author Posted October 29, 2003 Thanks XyBoy, but I find a way to resolve my problem. I have builded a class which have a table as property. I use it like this : Dim myValTab(20) as new myTabClass 'I simplified some of the numbers For i = 0 to 19 for j = 0 to 4 for k = 0 to 8 myValTab(i).table(j, k) next next Next It does exactely what I want. It's been a while since I've done something which works, yessss:D ! 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.