9 lines
198 B
ObjectPascal
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;
|