我是Visual Basic的新手,我有一个问题,希望有一个简单的答案。
我有两个NumericUpDown
按钮,如果第二个按钮大于第一个按钮,我需要显示错误消息。 (I.E."第二个NumericUpDown的值必须等于或高于第一个NumericUpDown"的值。)
我知道第二部分将是
MessageBox.Show("Error", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
如果上述情况发生,我如何告诉Visual Basic只显示此错误消息?
答案 0 :(得分:0)
只需比较这两个值,如果第二个值小于第一个值,则显示您的消息。
If numericUpDown2.Value < numericUpDown1.Value Then
MessageBox.Show("The value for the second number " & _
"must be equal to or higher than the value " & _
"of the first number", "Error", _
MessageBoxButtons.OK, MessageBoxIcon.Error)
End If