Componentes.Terceros.jvcl/official/3.36/examples/JvScreenCapture/JvScreenCaptureProj.dpr
2009-02-27 12:23:32 +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.