If
banner is some kind of ActiveX object, then *probably* you will do
Code:
pic[0] = new banner(rr,102,"offer2.asp")
But if banner is a VBScript class, you can't construct and initialize it in a single statement, unfortunately.
You'd have to do something like
Code:
b = New banner
b.initialize rr, 102, "offer2.asp"
pic[0] = b
But it's not clear to me how you are going to use an ASP page (that is, "offer2.asp") in a ".vbs" file.