var
Frm_Main_Bground: TFrm_Main_Bground;
i:byte;
value:Boolean;
implementation
uses
Login_frm;
{$R *.dfm}
function TFrm_Main_Bground.ShowLoginFrm:Boolean ;
begin
Frm_Main_Login.Show; //ShowModal 后为什么在这里不能再 SHOW ????? SHOW 就报错
if Frm_Main_Login.GetValue=True then value:=True;
Result:=True;
end;