Componentes.Terceros.jvcl/internal/3.36/1/examples/JvScreenCapture/JvScreenCaptureProj.dpr
2009-03-04 12:31:55 +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.