Enter
29.07.2004, 20:17
Hallo
Irgendwie raff ich es nicht mit der Parameterübergabe in Bascom.
Ich habe eine Funktion so definiert:
Declare Sub Test(byval anzahl As Byte)
Im Hauptprogramm rufe ich die dann so auf:
call test(5)
die Subroutine selbst ist so definiert
Sub Test(byval anzahl As Byte)
print anzahl
end sub
Warum ergibt das Print anzahl immer wieder "0", wo ist meine "5" hin?
Irgendwie raff ich es nicht mit der Parameterübergabe in Bascom.
Ich habe eine Funktion so definiert:
Declare Sub Test(byval anzahl As Byte)
Im Hauptprogramm rufe ich die dann so auf:
call test(5)
die Subroutine selbst ist so definiert
Sub Test(byval anzahl As Byte)
print anzahl
end sub
Warum ergibt das Print anzahl immer wieder "0", wo ist meine "5" hin?