Componentes.Terceros.jvcl/official/3.00/examples/RaLib/RaInterpreter/samples/sample - makeform.pas

9 lines
198 B
ObjectPascal

var
MyForm: TForm;
begin
MyForm := JvInterpreterMakeForm(ExePath + 'samples\fModalForm.pas');
if MyForm.ShowModal = mrOk then
showmessage('OK button clicked');
MyForm.Free;
end;