Code: Alles auswählen
Procedure P_action(index)
If Not MyArray(0) ;..????.. Wie kann ich hier abfragen, ob MyArray überhaupt existiert??
Global Dim MyArray(0)
EndIf
ReDim MyArray(index)
;usw....
EndProcedure
P_action(1)
P_action(2)
P_action(3)