我有一个关于限制条件的问题

我有一个关于限制条件的问题

本文介绍了海友们,我有一个关于限制条件的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在windows文本框中编写接受10000以上和20000以下的代码





你能告诉我

感谢

how to write a code for accepting above 10000 and bellow 20000 in windows textbox


can you tell me
thankss

推荐答案

try
{
  int yourValue=int.Parse(txtYourTb.Text);
  if(yourValue>10000 && yourValue<20000)
  {
     //do your stuff
  }
  else
  {
     MessageBox.Show("Invalid Input");
     return;
  }
}
catch(Exception ex)
{
   //str msg=ex.Message;
}





希望,它会有所帮助:)



Hope, it helps :)



Quote:

if(Convert.ToInt32(TextBox1.Text)> 20000 || Convert.ToInt32(TextBox1.Text)< 10000)

{

MessageBox.Show(金额b / w 10000-20000);

TextBox1.Text =;

返回;

}

if (Convert.ToInt32(TextBox1.Text) > 20000 || Convert.ToInt32(TextBox1.Text) < 10000)
{
MessageBox.Show("Amount b/w 10000-20000");
TextBox1.Text = "";
return;
}


这篇关于海友们,我有一个关于限制条件的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 01:11