home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 March
/
Chip_1999-03_cd.bin
/
zkuste
/
delphi
/
INFO
/
DI9806SB.ZIP
/
Sclogin.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-12-21
|
494b
|
32 lines
unit Sclogin;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TPasswordDlg = class(TForm)
PasswordLbl: TLabel;
Password: TEdit;
OKBtn: TBitBtn;
CancelBtn: TBitBtn;
UsernameLbl: TLabel;
Username: TEdit;
Bevel1: TBevel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
PasswordDlg: TPasswordDlg;
implementation
{$R *.DFM}
end.