You've already forked lazarus-ccr
jvcllaz: Add demo for jvMarkup controls
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6256 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
22
components/jvcllaz/examples/JvMarkup/MarkupDemo.lpr
Normal file
22
components/jvcllaz/examples/JvMarkup/MarkupDemo.lpr
Normal file
@ -0,0 +1,22 @@
|
||||
program MarkupDemo;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
uses
|
||||
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
||||
cthreads,
|
||||
{$ENDIF}{$ENDIF}
|
||||
Interfaces, // this includes the LCL widgetset
|
||||
Forms, main
|
||||
{ you can add units after this };
|
||||
|
||||
{$R *.res}
|
||||
|
||||
begin
|
||||
RequireDerivedFormResource := True;
|
||||
Application.Scaled := True;
|
||||
Application.Initialize;
|
||||
Application.CreateForm(TMainForm, MainForm);
|
||||
Application.Run;
|
||||
end.
|
||||
|
Reference in New Issue
Block a user