lazarus/components/printers/sample/selectprinter.lpr
mattias 5e317c7619 fixed make bigide for darwin
git-svn-id: trunk@8609 -
2006-01-23 20:39:57 +00:00

16 lines
258 B
ObjectPascal

program selectprinter;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, frmselprinter, SQLDBLaz;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.