現在、Binary Adder の Validation チェックでエラーが発生していますが、1 または 0 をチェックしているだけです。テキストボックスに2から9までとaからzまでのすべてが含まれているかどうかを確認したい。私のコードは現在:
Dim errorpass As Integer = 2
Dim decnum As Integer = 2
Dim errormsg As String = "ERROR:" + vbNewLine
'Start of Error Checking
'Checking if either textbox contains anything
If TextBox1.Text = "" Or TextBox2.Text = "" Then
errormsg += ("Please enter some form of input." + vbNewLine)
errorpass = 1
'Checking if either textbox are numbers
ElseIf Not (IsNumeric(TextBox1.Text) Or IsNumeric(TextBox2.Text)) Then
errormsg += ("Please enter a number." + vbNewLine)
errorpass = 1
'Checking if either textbox contains 1's or 0's
For i = 2 To 9
If TextBox1.Text.Contains(decnum) Or TextBox2.Text.Contains(decnum) Then
errormsg += ("Please enter binary." + vbNewLine)
errorpass = 1
ElseIf Not TextBox1.Text.Contains("1" Or "0") Or TextBox2.Text.Contains("1" Or "0") Then
errorpass = 1
If decnum = 9 Then
decnum = 2
Else
decnum += 1
End If
Else
errorpass = 2
End If
Next
End If
'Processing the request
If errorpass = 1 Then
MsgBox(errormsg, MsgBoxStyle.Exclamation, Title:="ERROR PROCESSING YOUR REQUEST")
ElseIf errorpass = 2 Then
'Adder
TextBox3.Text = Convert.ToString(Convert.ToInt32(TextBox1.Text, 2) + Convert.ToInt32(TextBox2.Text, 2), 2)
End If
errorpass = 2
ありがとう :)