30 lines
464 B
Plaintext
30 lines
464 B
Plaintext
unit Deluser;
|
|
|
|
interface
|
|
|
|
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
|
|
StdCtrls, ExtCtrls;
|
|
|
|
type
|
|
TBtnRightDlg = class(TForm)
|
|
OKBtn: TBitBtn;
|
|
CancelBtn: TBitBtn;
|
|
HelpBtn: TBitBtn;
|
|
Bevel1: TBevel;
|
|
ListBox1: TListBox;
|
|
Label1: TLabel;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
BtnRightDlg: TBtnRightDlg;
|
|
|
|
implementation
|
|
|
|
{$R *.DFM}
|
|
|
|
end.
|