Feb 15, 2001 #1 link9 Programmer Nov 28, 2000 3,387 US I want to create an array of objects... Is this possible in VBScript? thx Paul Prewett
Feb 15, 2001 #2 adr Programmer Feb 15, 2001 3 US yeah you can go dim blah(10) for i = to ubound(blah) set blah(i) = server.createobject("my.object" next Upvote 0 Downvote
yeah you can go dim blah(10) for i = to ubound(blah) set blah(i) = server.createobject("my.object" next