14 lines
236 B
ObjectPascal
14 lines
236 B
ObjectPascal
program CheckTVDemo;
|
|
|
|
uses
|
|
Forms,
|
|
CheckTVDemoFrm in 'CheckTVDemoFrm.pas' {frmCheckTVDemo};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TfrmCheckTVDemo, frmCheckTVDemo);
|
|
Application.Run;
|
|
end.
|