program ProjectUML; uses Forms, UnitUML in 'UnitUML.pas' {FormBase}; {$R *.res} begin Application.Initialize; // Application.CreateForm(TFormBase, FormBase); Controller:= TController.Create; Storage:= TStorage.Create; Border:=TBorder.Create(nil); Border.Connect(Controller); Controller.Connect(Border,Storage); Storage.Connect(Controller); Border.ShowModal; //Application.CreateForm(TBorder, Border); //Application.Run; end.