我们如何检查文本框中的负值?我只能 TryParse 文本框,以便在那里验证它是否是数值:
If Not Decimal.TryParse(txtParts.Text, decParts) Then
If decParts <= 0 Then
MessageBox.Show("ERROR: Value must be a positive number!")
End If
MessageBox.Show("ERROR: Value must be numeric!")
Return False
End If
是否可以在 TryParse 方法中检查负值?