unit scriptmanager; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, ExtCtrls, ComCtrls; type { TForm1 } TForm1 = class(TForm) Button1: TButton; ImageList1: TImageList; ListBox1: TListBox; ListView1: TListView; TreeView1: TTreeView; procedure Button1Click(Sender: TObject); private { private declarations } public { public declarations } end; var Form1: TForm1; implementation {$R *.lfm} { TForm1 } procedure TForm1.Button1Click(Sender: TObject); begin end; end.