program Infbook; uses Forms, Inf1 in 'INF1.PAS' {Form1}, Inf2 in 'INF2.PAS' {Configuration}, Inf3 in '\WINDOWS\INF3.PAS' {Form2}, Inf4 in 'INF4.PAS' {InputDialog}, Tm_Str in 'TM_STR.PAS', Debuggo in 'DEBUGGO.PAS' {DebugDlg}, Imfedit in 'IMFEDIT.PAS' {FSedit}, Imfobjs in 'IMFOBJS.PAS'; {$R *.RES} begin Application.Title := 'Imform'; Application.CreateForm(TForm1, Form1); Application.CreateForm(TConfiguration, Configuration); Application.CreateForm(TForm2, Form2); Application.CreateForm(TInputDialog, InputDialog); Application.CreateForm(TDebugDlg, DebugDlg); Application.CreateForm(TFSedit, FSedit); Application.Run; end.