哪位表哥帮忙指点一下
哪位表哥帮忙看下该怎么弄,小弟刚学,才疏学浅,谢过~代码如下:
private bool method_2()
{
if (this.textBox2.Text.Length < 20)
{
MessageBox.Show("注册码错误");
return false;
}
int num = 0;
if (!this.mainForm_0.CheckRegister2(this.textBox2.Text, ref num))
{
MessageBox.Show("注册码错误");
return false;
}
this.mainForm_0.UserCount = num;
this.mainForm_0.MCID = this.textBox1.Text;
this.method_5();
if (num == 999)
{
MessageBox.Show("注册成功,(用户数-无限工作点)");
}
else
{
MessageBox.Show("注册成功,(用户数-" + num.ToString() + ")");
}
this.SureClick = true;
this.SelectValue = this.textBox2.Text;
base.Close();
return true;
}
页:
[1]