Hi, I need to be able to delete items from a 2-D array and preserve all the items after the item I have deleted.
For example, if I have the following array: myArray(1,0) = Car myArray(1,1) = Red myArray(2,0) = Train myArray(2,1) = Green myArray(3,0) = Bus myArray(3,1) = White myArray(4,0) = Car myArray(4,1) = Blue myArray(5,0) = Bike myArray(5,1) = Yellow I'd like to delete item 3 from the array so that it now looks like this: myArray(1,0) = Car myArray(1,1) = Red myArray(2,0) = Train myArray(2,1) = Green myArray(3,0) = Car myArray(3,1) = Blue myArray(4,0) = Bike myArray(4,1) = Yellow Any help would be much appreciated. Thanks, Jon. ------------------------ Yahoo! Groups Sponsor --------------------~--> Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar. Now with Pop-Up Blocker. Get it for free! http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/saFolB/TM --------------------------------------------------------------------~-> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
