⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme.txt

📁 TSecurity提供登陆/注销/修改口令的控件。(有源代码)工作在:D1 D2 D3 D4 D5。作者:Ma Jun
💻 TXT
字号:
TSecurity
Version 1.0
by Ma Jun


1. How to use this component?
  It can be used in two ways:
  (1). In Project file like this:

  program Project1;

  uses
    Forms,
    Unit1 in 'Unit1.pas' {Form1};

  {$R *.RES}

  begin
    Application.Initialize;
    Application.CreateForm(TForm1, Form1);
// { add here }
// ----- Security1 is in Form1 --------  
    if Form1.Security1.Login then
    begin
      // Application.CreateForm(TForm2, Form2);
      Application.Run;
    end;
// -----------
  end.




  (2). also can set in Main form's OnActive event

  procedure TForm1.FormActivate(Sender: TObject);
  begin
    //  if not Security1.Login then Close;
  end;



email:junma@126.com
home page:http://go.163.com/~delphiws (in chinese)

You are free to use TSecurity for any purpose. If you do some
modification, please let me know.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -