|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| ||||||||||||||||||||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
At the golbal level I have three arrays dimed as follows:
Dim WrittenArray(100) as Guid (I'm working with guids) Dim OralArray(100) as Guid Dim SpecilaLicense(100) as Guid I want toable to use one array instead of three Dim AllArray (100) as Guid My question is how do I clear out a generic array so that when it is called I do not have any existing values left in the array? a code sample would be very helpful thanks |
|
#2
|
|||
|
|||
|
Re: Array
How bout trying to use For loops to set the arrays into blanks? Try before?
For i=0 to 100 do array[i] = 0 Next |
|
#3
|
|||
|
|||
|
Re
try:
for i=lbound(AllArray) to ubound(AllArray) AllArray (i) ="" next |
![]() |
| Viewing: Dev Articles Community Forums > Programming > ASP Development > Array |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|