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

36 lines
1.2 KiB
Plaintext

program Myadmin;
uses
Forms,
Startfrm in 'STARTFRM.PAS' {Form1},
nwBindry in 'UNITS\NWBINDRY.PAS',
NWintr in 'UNITS\NWINTR.PAS',
NWMISC in 'UNITS\NWMISC.PAS',
nwConn in 'UNITS\NWCONN.PAS',
nwServ in 'UNITS\NWSERV.PAS',
User in 'USER.PAS' {BtnBottomDlg},
Deluser in 'DELUSER.PAS' {BtnRightDlg},
Passform in '\DELPHI\IMAGES\ICONS\PASSFORM.PAS' {BtnBottomDlg1},
Adduser in '\DELPHI\IMAGES\BUTTONS\ADDUSER.PAS' {BtnBottomDlg2},
Eduser in 'EDUSER.PAS' {BtnBottomDlg3},
Svrutil in 'SVRUTIL.PAS' {BtnRightDlg1},
nwMess in 'UNITS\NWMESS.PAS',
Sendmsg in 'UNITS\SENDMSG.PAS' {BtnBottomDlg4},
Chgpass2 in 'UNITS\CHGPASS2.PAS' {PasswordDlg};
{$R *.RES}
begin
Application.Title := 'NWE Admin 0.1';
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TBtnBottomDlg, BtnBottomDlg);
Application.CreateForm(TBtnRightDlg, BtnRightDlg);
Application.CreateForm(TBtnBottomDlg1, BtnBottomDlg1);
Application.CreateForm(TBtnBottomDlg2, BtnBottomDlg2);
Application.CreateForm(TBtnBottomDlg3, BtnBottomDlg3);
Application.CreateForm(TBtnRightDlg1, BtnRightDlg1);
Application.CreateForm(TBtnBottomDlg4, BtnBottomDlg4);
Application.CreateForm(TPasswordDlg, PasswordDlg);
Application.Run;
end.