Componentes.Terceros.jvcl/official/3.32/examples/RaLib/RaEditor/RAEditorTest.dpr

15 lines
248 B
ObjectPascal

program RAEditorTest;
uses
Forms,
fJvEditorTest in 'fJvEditorTest.pas' {frmEditor};
{$R *.RES}
begin
Application.Initialize;
Application.Title := '';
Application.CreateForm(TfrmEditor, frmEditor);
Application.Run;
end.