lazarus/components/turbopower_ipro/examples/htmlwithcss.lpr
mattias 789705e0a3 turbopower_ipro: added example with css
git-svn-id: trunk@30039 -
2011-03-27 17:55:16 +00:00

15 lines
186 B
ObjectPascal

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