这么简单的问题,其实做个简单的例子发上来就行了,不需要整个项目上传的。
设置条码输入框的Validating事件:
Dim txt As string = e.Sender.Text
If txt > "" AndAlso txt.Length <> e.form.Controls("长度选择框").Value Then
MessageBox.show("长度不符")
e.Cancel = true
End If