unit FormFindPointerUnit; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TFormFindPointer = class(TForm) ListBox1: TListBox; Button1: TButton; private { Private declarations } public { Public declarations } end; var FormFindPointer: TFormFindPointer; implementation {$R *.dfm} end.