Hi leute,
Ich präsientiere euch heude mal wie ihr eine If Then abgleichung macht
Also folgendes,
Hier zunächst einmal der Code:
Option Explicit
Private mblnWert As Boolean
Private Sub Form_Load()
If mblnWert = False Then MsgBox "mblnWert hat den Wert False, dass Programm wird beendet." : End
If mblnWert = True Then MsgBox "mblnWert hat den Wert True, dass Programm wird beendet.": End
End Sub
Eine Boolean Variable hat anfagns immer False!
Gruß,
[GRC]Flip