dark_mascot
Grünschnabel
Hallo ich habe in einem Modul folgende
Funktion geschrieben:
Sub test(Command As CommandButton, Elemente As Integer)
If Elemente > 0 Then
Command.Enabled = True
Else
Command.Enabled = False
End If
Command.Caption = Command.Caption & " (" & Elemente & ")"
End Sub
Und nun wollte ich die Funktion in einem Formular
wie folgt aufrufen:
test(Command4, ZZ_ml)
warum geht das so nicht und
was muß geändert werden ?
Danke im Voraus
Dark_Mascot
Funktion geschrieben:
Sub test(Command As CommandButton, Elemente As Integer)
If Elemente > 0 Then
Command.Enabled = True
Else
Command.Enabled = False
End If
Command.Caption = Command.Caption & " (" & Elemente & ")"
End Sub
Und nun wollte ich die Funktion in einem Formular
wie folgt aufrufen:
test(Command4, ZZ_ml)
warum geht das so nicht und
was muß geändert werden ?
Danke im Voraus
Dark_Mascot