给别人意见 建议 帮助是可以的
但不能完全帮别人做毕业设计
btw,要我还是这版斑竹 我早把这帖删了
[url=javascript:alert(1);] [div]fdgfdgfdg\" on\"[/div] [/url]
我做了一个企业员工档案管理系统,我做了个用户注册功能,但我写了代码,没能实现,不知道是什么原因,请给予帮忙!
this.sqlDataAdapter1.Fill(tempTable);
adAmend = (CurrencyManager)BindingContext[tempTable];
if (this.textBox1.Text.Trim() == "")//检查不能为空的字段
{
MessageBox.Show("用户名不可以为空!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
adAmend.EndCurrentEdit();//结束当前编辑操作并提交修改
if (tempTable.GetChanges() != null)
{
try
{
this.sqlDataAdapter1.Update(tempTable);
adAmend.Refresh();
MessageBox.Show("保存成功!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
}
catch (Exception express)
{
MessageBox.Show(express.ToString(), "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
this.tempTable.RejectChanges();
}
}
return;
}