Recently we received via our
support a remark that the following Object Pascal code failed in a
TMS WEB Core application
procedure TWebForm1.Button1Click(Sender: TObject); function TestFunction: TStringList; begin Result.Clear; Result.Add('ABC'); Result.Add('DEF'); Result.Add('GHI'); end;var StringList: TStringList;begin StringLi
Weiterlesen...