Posts: 146
Threads: 50
Joined: Dec 2008
Reputation:
1
03-23-2009, 05:31 PM
Hello Friends,
By seeing Array... How can we say that array is static array or dynamic array...!
thanks & regards,
Baba Fakruddin.D
Posts: 350
Threads: 2
Joined: Mar 2008
Reputation:
0
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)