Componentes.Terceros.jvcl/official/3.39/examples/JvScreenCapture/JvScreenCaptureProj.dpr
2010-01-18 16:55:50 +00:00

14 lines
291 B
ObjectPascal

program JvScreenCaptureProj;
uses
Forms,
JvScreenCaptureMainFormU in 'JvScreenCaptureMainFormU.pas' {JvScreenCaptureMainForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TJvScreenCaptureMainForm, JvScreenCaptureMainForm);
Application.Run;
end.