Ok, so i am revamping pplsuqbawlz Graphical Reporter (i don't know if pplsuqbawlz is still active, if so srry for not asking). And i am building it up from scratch again. But now while i am making and testing the form it gives me a very weird error.
This is the error:
Code:
Line 24: [Error] (24:8): Unknown identifier 'PARENT' in script
And this is the Script:
SCAR Code:
program New;
var
Form1 : TForm;
Timer1 : TTimer;
procedure InitForm;
begin
Form1 := CreateForm;
Form1.Left := 349;
Form1.Top := 273;
Form1.BorderStyle := bsDialog;
Form1.Caption := 'Form1';
Form1.ClientHeight := 190;
Form1.ClientWidth := 320;
Form1.Color := clMedGray;
Form1.Font.Color := clWindowText;
Form1.Font.Height := -13;
Form1.Font.Name := 'Verdana';
Form1.Font.Style := [fsBold];
Form1.Visible := True;
Form1.PixelsPerInch := 100;
Timer1 := TTimer.Create(Form1);
Timer1.Parent := Form1;
end;
procedure SafeInitForm;
var
v: TVariantArray;
begin
setarraylength(V, 0);
ThreadSafeCall('InitForm', v);
end;
procedure ShowFormModal;
begin
frmDesign.ShowModal;
end;
procedure SafeShowFormModal;
var
v: TVariantArray;
begin
setarraylength(V, 0);
ThreadSafeCall('ShowFormModal', v);
end;
begin
SafeInitForm;
SafeShowFormModal;
end.
Like you can see i doesn't know the parrent option 
PS: I am using Scar3.13Divi