Hi,

I'm trying to create a simple array, this is the code
______________________________________________________
$COMMON = "Group1"

Global $array[9]

IF INGROUP("$COMMON") = 1
? "Member Of Group1"
DIM $Var1
$Var1 = "C:\KVARK"
ENDIF

For Each $element In $array
? $Var
Next

? "DONE!"
______________________________________________
I want to create an array which will containg a certain value depentent on which group a user is member of..
This script produces ten blank lines....

Thanks !

-Flippis