git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jvcl@12 7f62d464-2af8-f54e-996c-e91b33f51cbe
14 lines
282 B
ObjectPascal
14 lines
282 B
ObjectPascal
program JvDBHTLabelDemo;
|
|
|
|
uses
|
|
Forms,
|
|
JvDBHTLabelDemoMainForm in 'JvDBHTLabelDemoMainForm.pas' {JvDBHTLabelDemoMainFrm};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TJvDBHTLabelDemoMainFrm, JvDBHTLabelDemoMainFrm);
|
|
Application.Run;
|
|
end.
|