I have an Splash Window's EX.
program PrjSender;
uses
Forms,
Usender in 'Usender.pas' {Form1},
Unit2 in 'Unit2.pas' {splash};
{$R *.RES}
begin
splash:=Tsplash.Create(nil);
splash.Show;
splash.update;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
splash.close;
splash.free;
Application.Run;
end.
DELPHI有自带的密码输入窗体,直接打开文件调用它.(delphi/objrepos/password);
在OK按钮ONCLICK 中加入
if 密码不正确 then
close else
继续执行主窗体;
>怎样让EDIT中以“*”来隐藏字符。
在EDIT1.PASSWORDCHAR中输入'*'即可.