在我的应用程序中,我有两种形式,比如说 LoginForm 和 AccountForm
LoginForm 被设置为主表单,它是用户能够登录到他的帐户时的表单(两个 TEdits 和登录按钮)。当用户键入他的登录详细信息并连接时,将打开一个新表单,即 AccountForm。
如何在不关闭整个应用程序的情况下在登录成功时关闭 LoginForm?或者在这种语言中如何使用下面的代码只关闭登录表单而不关闭应用程序。
if (not IncludeForm.sqlquery1.IsEmpty) and (isblacklisted='0') and (isactivated='1') then
begin // Login Successful *** Show the account window
AccountForm.Show;
LoginFrom.Close; // <----The problem is in this line, using this line causes the whole application to close***}
end;
谢谢