首页上一页 1 下一页尾页 1 条记录 1/1页
怎么调用设计好的 企业人事管理系统 主界面?
发表在C#图书答疑
2009-06-22
是否精华
是
否
版块置顶:
是
否
在<<c#从入门到精通>>中525页到526页中怎么也找不到如果登入成功可以调用"企业人事管理系统"主界面.
书中的代码是: private void butLogin_Click(object sender, EventArgs e)
{
if (textName.Text != "" & textPass.Text != "")
{
SqlDataReader temDR = MyClass.getcom("select * from tb_Login where Name='" + textName.Text.Trim() + "' and Pass='" + textPass.Text.Trim() + "'");
bool ifcom = temDR.Read();
if (ifcom)
{
DataClass.MyMeans.Login_Name = textName.Text.Trim();
DataClass.MyMeans.Login_ID = temDR.GetString(0);
DataClass.MyMeans.My_con.Close();
DataClass.MyMeans.My_con.Dispose();
DataClass.MyMeans.Login_n = (int)(this.Tag);
this.Close();
}
else
{
MessageBox.Show("用户名或密码错误!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
textName.Text = "";
textPass.Text = "";
}
MyClass.con_close();
}
else
MessageBox.Show("请将登录信息添写完整!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
private void F_Login_Load(object sender, EventArgs e)
{
try
{
MyClass.con_open(); //连接数据库
MyClass.con_close();
textName.Text = "";
textPass.Text = "";
}
catch
{
MessageBox.Show("数据库连接失败。", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
Application.Exit();
}
}
private void textName_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == '\r')
textPass.Focus();
}
private void textPass_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == '\r')
butLogin.Focus();
}
private void F_Login_Activated(object sender, EventArgs e)
{
textName.Focus();
}
}
怎么找也找不到铵"登录"后如果有用户的话可以调出"企业人事管理系统"主界面的代码.
只在代码中发现如下:
//当有记录时,表示用户和密码正确.
if (ifcom)
{
DataClass.MyMeans.Login_Name = textName.Text.Trim();
DataClass.MyMeans.Login_ID = temDR.GetString(0);
DataClass.MyMeans.My_con.Close();
DataClass.MyMeans.My_con.Dispose();
DataClass.MyMeans.Login_n = (int)(this.Tag);
this.Close();
}
但里面根本没有调主窗口的语句.我晕,请小科老师指导一下.
书中的代码是: private void butLogin_Click(object sender, EventArgs e)
{
if (textName.Text != "" & textPass.Text != "")
{
SqlDataReader temDR = MyClass.getcom("select * from tb_Login where Name='" + textName.Text.Trim() + "' and Pass='" + textPass.Text.Trim() + "'");
bool ifcom = temDR.Read();
if (ifcom)
{
DataClass.MyMeans.Login_Name = textName.Text.Trim();
DataClass.MyMeans.Login_ID = temDR.GetString(0);
DataClass.MyMeans.My_con.Close();
DataClass.MyMeans.My_con.Dispose();
DataClass.MyMeans.Login_n = (int)(this.Tag);
this.Close();
}
else
{
MessageBox.Show("用户名或密码错误!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
textName.Text = "";
textPass.Text = "";
}
MyClass.con_close();
}
else
MessageBox.Show("请将登录信息添写完整!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
private void F_Login_Load(object sender, EventArgs e)
{
try
{
MyClass.con_open(); //连接数据库
MyClass.con_close();
textName.Text = "";
textPass.Text = "";
}
catch
{
MessageBox.Show("数据库连接失败。", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
Application.Exit();
}
}
private void textName_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == '\r')
textPass.Focus();
}
private void textPass_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == '\r')
butLogin.Focus();
}
private void F_Login_Activated(object sender, EventArgs e)
{
textName.Focus();
}
}
怎么找也找不到铵"登录"后如果有用户的话可以调出"企业人事管理系统"主界面的代码.
只在代码中发现如下:
//当有记录时,表示用户和密码正确.
if (ifcom)
{
DataClass.MyMeans.Login_Name = textName.Text.Trim();
DataClass.MyMeans.Login_ID = temDR.GetString(0);
DataClass.MyMeans.My_con.Close();
DataClass.MyMeans.My_con.Dispose();
DataClass.MyMeans.Login_n = (int)(this.Tag);
this.Close();
}
但里面根本没有调主窗口的语句.我晕,请小科老师指导一下.