Yo,
wie kann ich ein "oder" setzen?
Bspw: If TextBox1.Text = "xxx" ODER TextBox1.Text = "yyy"
mit "or"? Nein oder? Wie frage ich dies ab?
Gruß
Yo,
wie kann ich ein "oder" setzen?
Bspw: If TextBox1.Text = "xxx" ODER TextBox1.Text = "yyy"
mit "or"? Nein oder? Wie frage ich dies ab?
Gruß
If TextBox1.Text = "xxx" OR TextBox1.Text = "yyy"
Sollte gehen.
Versuchs mit "||"
Versuchs mit "||"
"Ungültiges Zeichen" ...
So geht es doch:
"If TextBox1.Text = "xxx" And TextBox2.Text = "xyx" Or TextBox1.Text = "yyy" & TextBox2.Text = "xyx" Then"
Thank you guys:)
MfG