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