Zitat Zitat von inmate Beitrag anzeigen

dim checkbox1.checked as string

Also so wird das ganze nicht funktionieren

dim checkbox1.checked as string geht nicht

wennschon:

Code:
Dim lol As String = CheckBox1.Checked
Wird funktionieren, aber noch korrekter wäre :

Code:
Dim lol As Boolean = CheckBox1.Checked
lol = CStr(lol)