Default Avatar

christian

christian

About

Username
christian
Joined
Visits
0
Last Active
Roles
Members

Comments

  • I???ve exact the same problem after updating to 1,9. When I try to "Create" a TClass object in the script, the engine raises an "Incompatible type" error. But I can solve the problem; if I rebuild (compile the whole project) in Delphi, ever…
  • My delphi is updated with sp 1+2 I got the problem after I updated to FastScript 1,7 I've 2 solutions: 1) Go back to FastScript 1,6 2) Modify the code in unit fs_iinterpreter if Assigned(FOnCall) then begin v := VarArrayCreate([0, Cou…
  • I've some more information. This example works: decodeDate(date,y,m,d); da := encodeDate(y,m,d); - but this don't: d := 1; m := 1; da := encodeDate(y,m,d); I debugged the TfsMethodHelper.GetValue function, and notify that the parameter…
  • Delphi 6 Result from debugger: function TfsMethodHelper.GetValue: Variant; var v: Variant; i: Integer; s: String; Instance: TObject; begin if Assigned(FOnCall) then begin v := VarArrayCreate([0, Count - 1], varVariant); for i := 0 to…
  • Thanks for your anwser. I modified the source as you wrote, but now I receive this error in "TfsMethodHelper.GetValue" function: "Invalid variant type conversion" I'm running the same pascal script. Regards Christian