unit fTree; {$MODE Delphi} interface uses Forms, StdCtrls; type TDumpBox = class(TForm) Memo1: TMemo; private public end; var DumpBox: TDumpBox; implementation {$R *.lfm} end.