Jonas Schmeltz Aaberg wrote :
> Denne stump JavaScript vil jeg gerne have skrevet om til
> VBScript:
>
> for (i=1; i<65535; i*=2) {
> mit_array[j] = i;
> j++;
> }
for i = 1 to 65535 - 1 'eller blot 65534
mit_array(j) = i
j = j + 1
i = i * 2
next
.... noget i den retning bør nok kunne hjælpe dig.
--
Jesper Stocholm
http://stocholm.dk
Give a man a fish and he will have food for a day,
give a man an elephant, and he will have food for a week.