mirror of
http://gitlab.expertsoft.com.ua/git/expertcad
synced 2026-01-11 22:45:39 +02:00
17 lines
325 B
ObjectPascal
17 lines
325 B
ObjectPascal
program PowerDrawMDI;
|
|
|
|
uses
|
|
Forms,
|
|
Main in 'MAIN.PAS' {MainForm},
|
|
Childwin in 'CHILDWIN.PAS' {MDIChild},
|
|
About in 'about.pas' {AboutBox};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.CreateForm(TAboutBox, AboutBox);
|
|
Application.Run;
|
|
end.
|