我正在尝试验证 TextBox 的输入以确保它是二进制数。到目前为止,我所拥有的是:
Private Sub Command1_Click()
Dim b() As Byte
b = Text1.Text
If Not IsByte (b) Then
Text3 = "Wrong input"
Else
Text3 = "CRC is generated"
' checksum.Text = Text1.Text Xor Text2.Text
' Trans(2).Text = (Text1.Text) + (checksum.Text)
End If
Text1 中的输入应该只接受二进制数,因此只允许1
or 0
。