home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 August
/
VPR9708A.ISO
/
D3TRIAL
/
INSTALL
/
DATA.Z
/
PASSWORD.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-05-02
|
395b
|
29 lines
unit Password;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons;
type
TPasswordDlg = class(TForm)
Label1: TLabel;
Password: TEdit;
OKBtn: TButton;
CancelBtn: TButton;
private
{ Private 宣言 }
public
{ Public 宣言 }
end;
var
PasswordDlg: TPasswordDlg;
implementation
{$R *.DFM}
end.