string name=GrpManager.登陆首页.组合框1.Text;
string password=全局.密码;
User.Logon(name,password);
if(string.IsNullOrEmpty(GrpManager.登陆首页.组合框1.Text))
{
GrpManager.登陆首页.文本3.Visible=true;
}
else
{
if(SystemVariable.UserName==GrpManager.登陆首页.组合框1.Text)
{
Grp.Open("画面2");
Grp.Close("登录首页");
}
else
{
GrpManager.登陆首页.文本3.Visible=true;
}
}
这段代码是用来制作登陆界面的,运行可用,我个人不太明白这段代码是如何将输入的用户名和密码跟系统设置的用户名密码进行比对的,个人感觉应该是User.Logon(name,password);这小段代码起的是什么作用,可有返回值? |