标题:[求助]小数点按钮的事件代码该怎么写
只看楼主
lijing88
Rank: 1
等 级:新手上路
威 望:1
帖 子:342
专家分:0
注 册:2006-11-8
得分:0 
谢谢你们精彩的讨论,
特别谢谢jockey为我找的代码
我会很用心的去学的
我一定要把我的运算器做出来
当然这中间是少不了你们的支持的
还望你们多多给予指教哦
呵呵!真的很谢谢你们!

2006-12-07 20:08
liu098
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2006-12-7
得分:0 


你怎么不看我给你写的啊~!伤心!

private void textBox3_TextChanged(object sender, EventArgs e)
{
int shu = 0;
for (int i = 0; i < textBox3.Text.Length; i++)
{

if ((textBox3.Text[i] < '0' || textBox3.Text[i] > '9') && textBox3.Text[i] != '.')
{

MessageBox.Show("只能输入数字!");
textBox3.Text ="";

}
if(textBox3.Text[i]=='.')
{
shu++;
if (shu > 1)
{
MessageBox.Show("注意输入的是否正确!");
textBox3.Text = "";
}
}
}
}

2006-12-09 11:06
lijing88
Rank: 1
等 级:新手上路
威 望:1
帖 子:342
专家分:0
注 册:2006-11-8
得分:0 
以下是引用liu098在2006-12-9 11:06:32的发言:


你怎么不看我给你写的啊~!伤心!

private void textBox3_TextChanged(object sender, EventArgs e)
{
int shu = 0;
for (int i = 0; i < textBox3.Text.Length; i++)
{

if ((textBox3.Text[i] < '0' || textBox3.Text[i] > '9') && textBox3.Text[i] != '.')
{

MessageBox.Show("只能输入数字!");
textBox3.Text ="";

}
if(textBox3.Text[i]=='.')
{
shu++;
if (shu > 1)
{
MessageBox.Show("注意输入的是否正确!");
textBox3.Text = "";
}
}
}
}

怎么会不看呢?
你们的代码都很值得我慢慢的学习,
所以也很谢谢你拉!
我会努力的,我一定要把它做出来的拉.


2006-12-09 21:53



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-107382-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.557774 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved