03-23-2009, 07:00 PM
hi ,
I agree with Tariksheth anwser....
Static Array :
Array created by using Dim ( example: Dim str(3) ) since Array size is fixed.
Dynamic Array :
Array created by using ReDim ( example : ReDim arrUserRoles(objChildWebTable.Count - 1)
(since Array size is not fixed here & it varies dynamically)
I agree with Tariksheth anwser....
Static Array :
Array created by using Dim ( example: Dim str(3) ) since Array size is fixed.
Dynamic Array :
Array created by using ReDim ( example : ReDim arrUserRoles(objChildWebTable.Count - 1)
(since Array size is not fixed here & it varies dynamically)