source: trunk/Packages/bgracontrols/testbuttoneditor/bgraxbutton_test.lpr

Last change on this file was 2, checked in by chronos, 5 years ago
File size: 440 bytes
Line 
1program bgraxbutton_test;
2
3{$mode objfpc}{$H+}
4
5uses {$IFDEF UNIX} {$IFDEF UseCThreads}
6 cthreads, {$ENDIF} {$ENDIF}
7 Interfaces, // this includes the LCL widgetset
8 Forms,
9 umain { you can add units after this };
10
11{$R *.res}
12
13begin
14 Application.Title := 'Button Editor 1.1 by Lainz';
15 RequireDerivedFormResource := True;
16 Application.Initialize;
17 Application.CreateForm(TfrmButtonEditor, frmButtonEditor);
18 Application.Run;
19end.
20
Note: See TracBrowser for help on using the repository browser.