12-21-2022, 10:41 PM
(This post was last modified: 12-21-2022, 11:08 PM by Kernelpanic.)
Here is the high school crap! For example Option Base 1:
PS: So it is clearer:
PS: So it is clearer:
Code: (Select All)
'Option Base Beispiel - 21. Dez. 2022
Option Base 1
Option _Explicit
Dim As String jahresMonate(12)
Dim As Integer monat
Data Januar,Februar,Maerz,April,Mai,Juni
Data Juli,August,September,Oktober,November,Dezember
For monat = 1 To 12
Read jahresMonate(monat)
Print Using "Monat ##. "; monat;
Print jahresMonate(monat)
Next monat
End