Files
lazarus-ccr/components/jvcllaz/examples/JvBehaviorLabel/JvBehaviorLabelDemo.lpr
wp_xxyyzz 447d867a99 jvcllaz: Add new component TJvBehaviorLabel
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7082 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2019-07-28 16:56:07 +00:00

15 lines
303 B
ObjectPascal

program JvBehaviorLabelDemo;
uses
Interfaces, Forms,
JvBehaviorLblMainFrmU in 'JvBehaviorLblMainFrmU.pas' {JvBehaviorLblMainFrm};
{$R *.res}
begin
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TJvBehaviorLblMainFrm, JvBehaviorLblMainFrm);
Application.Run;
end.