lazarus/examples/listview/listview.lpr
marc 7c4506d73f + Added a new listview test example
git-svn-id: trunk@5668 -
2004-07-11 17:26:52 +00:00

16 lines
183 B
ObjectPascal

program listview;
{$mode objfpc}{$H+}
uses
Interfaces,
testform,
Forms;
begin
Application.Initialize;
Application.CreateForm ( TForm1, Form1 ) ;
Application.Run;
end.