Variable nicht definiert
Heinz
Habe plötzlich ein Problem bei "Calendar1"
Bis jetzt ist es immer problemlos gegangen.Jetzt kommt plötzlich n"Variable nicht definiert"
Könnte mir bitte jemand helfen.
Gruß
Heinz
Private Sub ListBox1_Click()
If ListBox1.Value "" And Calendar1.Value "" Then
CB1.Enabled = True
End If
End Sub
Option Explicit
Private Sub Calendar1_Click()
If Calendar1.Value "" And ListBox1.Value "" Then
CB1.Enabled = True
End If
End Sub
Private Sub CB1_Click()
'daten einsammeln
MyName = ListBox1.Value
Letzter = Calendar1.Value
Me.Hide
End Sub
Private Sub CB2_Click()
'benutzerabbruch
Me.Hide
End Sub
Private Sub LoadlistBox(lBox As ListBox, Ary)
With lBox
.Clear
.ColumnCount = 1
.List = Ary
End With
End Sub
Private Sub ListBox1_Click()
If ListBox1.Value "" And Calendar1.Value "" Then
CB1.Enabled = True
End If
End Sub
Anzeige
