本文介绍了如何将输入值限制在VB.NET范围内的文本框中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想设置可以在文本框中输入的最小值和最大值。如果输入的值不在范围内,则应由错误提供者指示错误。



我尝试过:



我尝试了以下代码,但它不起作用。



如果txtcellvtg.Text> 3和txtcellvtg.Text< 2.3然后

'

ErrorProvider2.SetError(txtcellvtg,最大电池电压为3)

否则

ErrorProvider2.SetError(txtcellvtg,)

结束如果

解决方案

I want to set the minimum and maximum value can enter into the text box. If the entered value is not within the range, error should indicate by error provider.

What I have tried:

I have tried the following code ,but its not working.

If txtcellvtg.Text > 3 And txtcellvtg.Text < 2.3 Then
'
ErrorProvider2.SetError(txtcellvtg, "Maximum cell voltage is 3 ")
Else
ErrorProvider2.SetError(txtcellvtg, "")
End If

解决方案


这篇关于如何将输入值限制在VB.NET范围内的文本框中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-16 03:49