home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Australian Personal Computer 2000 October
/
tst.iso
/
programs
/
borland
/
RUNIMAGE
/
DELPHI40
/
OBJREPOS
/
PASSWORD.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1998-06-17
|
411 b
|
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 declarations }
public
{ Public declarations }
end;
var
PasswordDlg: TPasswordDlg;
implementation
{$R *.DFM}
end.