Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can you have an array of objects in VBScript?

Status
Not open for further replies.

link9

Programmer
Nov 28, 2000
3,387
US
I want to create an array of objects...

Is this possible in VBScript?

thx
Paul Prewett
 
yeah you can go

dim blah(10)

for i = to ubound(blah)
set blah(i) = server.createobject("my.object")
next

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top