May 16, 2003 #1 maxpower1 Programmer Joined Jul 29, 2001 Messages 488 Location US how do you declare an array in Application_OnStart in global.asa? Application_OnStart() { var x = new Array(20); Application("UserArray" = x; } I used the above syntax and it says it does not conform with the apartment model??? thanks
how do you declare an array in Application_OnStart in global.asa? Application_OnStart() { var x = new Array(20); Application("UserArray" = x; } I used the above syntax and it says it does not conform with the apartment model??? thanks
May 16, 2003 #2 jackfl Programmer Joined May 7, 2003 Messages 50 Location US I think that refers to apartment threading... Dim Application("aryName" Upvote 0 Downvote