我在 vb.net 中工作,我想退出验证并将焦点返回到带有错误的文本框。
它会引发错误,但只要我单击确定,它就会继续执行程序的其余部分。有任何想法吗?谢谢你。
我还应该提到这是在课堂上吗?
'number of tickets property
Public Property NumberOfTickets() As String
Get
Return NumTickets
End Get
Set(value As String)
If (String.IsNullOrEmpty(value)) Then
MessageBox.Show("Please Enter Number of Tickets")
Exit Property
Else
NumTickets = value
End If
End Set
End Property