Files
mars-nweadmin/SRC/DELUSER.PAS
2026-05-12 20:38:28 +02:00

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.