Hello Glenn,

thanks for your quick response.

After my post, later on in the evening, I found this solution shown in the example below.

 Code:
$ = SetOption('NoVarsInStrings', 'On')

$array_1_count = 2
dim $array_1[$array_1_count -1 ,2]

$array_1[0,0] = "language"
$array_1[0,1] = "de"
$array_1[0,2] = "REG_SZ"

$array_1[1,0] = "client"
$array_1[1,1] = "thin"
$array_1[1,2] = "REG_SZ"


$name = "array_1"

$ = Execute('$ActiveValue = $' + $name)

for $i = 0 to $array_1_count -1 step 1
	$a_key = $activeValue[$i,0]
	$a_val = $activeValue[$i,1]
	$a_typ = $activeValue[$i,2]

	?
	? "a_key: " + $a_key
	? "a_val: " + $a_val
	? "a_typ: " + $a_typ
next


Thanks

Wolfgang