M
maz09
Unregistered / Unconfirmed
GUEST, unregistred user!
在启动页面后我加了一个登陆页面,如果密码正确的话,就关闭登陆页面并进入主页面
可是我检查了一下,发现登陆页面并没有被关闭,请问是怎么回事啊~~
部分源代码如下:
begin
Table_User.SetKey;
Table_User.Fields[0].AsString:=EditUser.Text;
Table_User.GotoKey;
//检索用户数据表
if (EditUser.Text = Table_User.Fields[0].AsString) and (EditPsw.Text = Table_User.Fields[1].AsString) then
begin
hide;
application.CreateForm(TTestDateForm,TestDateForm);
TestDateForm.ShowModal;
end
可是我检查了一下,发现登陆页面并没有被关闭,请问是怎么回事啊~~
部分源代码如下:
begin
Table_User.SetKey;
Table_User.Fields[0].AsString:=EditUser.Text;
Table_User.GotoKey;
//检索用户数据表
if (EditUser.Text = Table_User.Fields[0].AsString) and (EditPsw.Text = Table_User.Fields[1].AsString) then
begin
hide;
application.CreateForm(TTestDateForm,TestDateForm);
TestDateForm.ShowModal;
end
代码: