Code: Alles auswählen
Structure Test
Test1.s
Test2.s
Test3.s
EndStructure
ForEach Test
Debug Test
Next
Code: Alles auswählen
Structure Test
Test1.s
Test2.s
Test3.s
EndStructure
ForEach Test
Debug Test
Next
Code: Alles auswählen
Structure Test
Test1.s
Test2.s
Test3.s
EndStructure
Test.Test
Code: Alles auswählen
Structure Person
Name.s
ForName.s
Age.w
EndStructure
Dim MyFriends.Person(100)
; Here the position '0' of the array MyFriend()
; will contain one person and it's own information
MyFriends(0)\Name = "Andersson"
MyFriends(0)\Forname = "Richard"
MyFriends(0)\Age = 32
MyFriends(1)\Name = "John"
MyFriends(1)\Forname = "Doe"
MyFriends(1)\Age = 0
For i = 0 To 1
With MyFriends(i)
Debug "Name: "+ \Name +" Vorname: "+ \Forname +" Alter: "+ Str(\Age)
EndWith
Next