Default Avatar

EresInformatica

EresInformatica

About

Username
EresInformatica
Joined
Visits
0
Last Active
Roles
Members

Comments

  • After a long time, i resolve the problem of "Out of memory" puting this line in Query Create: { TfrxIBXQuery } constructor TfrxIBXQuery.Create(AOwner: TComponent); begin  FQuery := TIBQuery.Create(nil);  FQuery.UniDirectional := True; // th…
  • Alex, and how to use in Scripts (not in reports), the same functions already registered in the reports (non standards, registered by a TTfsRTTIModule). In scripts, there is only fsglobalUnit. Should i register the same functions in fsGlobalUnit ? …
  • Works ok to use those functions is frxReport. But how to use the same functions in a isolated script object (tFsScript), like this example: fsScript1.Clear; fsScript1.Lines := Memo.Lines; fsScript1.SyntaxType := LangCB.Items[LangCB.ItemIndex]; …
  • Okay, that??s works in Fr3 reports and scripting (in reports). But, like i said, i??m using only script (isolated from fr reports) too... in this case, how to add these functions ? the same code is not working... help. I??m using scripts not i…
  • i need something like this, too.
  • Yes, i had put the two components in order to work together as well. I have the Greatis Runtime Fusion, who uses the Roses Script engine (or something like that)... I just changed the code to my Script (FastScript) engine works...
  • With me, this error occurs when i??m trying that: for I := 1 to 5 do begin frxReport1.PrepareReport(I = 1); // Clear only in the first report (I = 1)... end; frxReport1.ShowPreparedReport; Sometimes, the error "Error reading StatusBar.Le…
  • Hi; i know that "on E: Exception" is not supported, but is there any way to 'capture' the exception message? something like that: procedure GenerateError; begin try ShowMessage(StrToInt('A')); except ShowMessage(ErrorMessage); // it ex…
  • Hi, i??m having the same problem, and at least in version 3.08, the problem go on. I??m waiting for a solution. Thanks Emerson
  • To resolve the problem while you don??t fix the 'bug', i??m using that: procedure TMDIForm1.OnCreate(Sender: TObject); begin  with fsGlobalUnit do  begin    AddedBy := Self;    AddForm(Self);    AddedBy := nil;  end; end; procedure…
  • Calling AddForm just one time works only in the first. When i create the form again (WITHOUT use AddForm), the script gives me a Access Violation Exception. How to proceed ? I need to recreate the forms many times, with the same name.
  • Well, calling AddForm just on time works only in the first time i call the script. When i close the form and open it again (by creating it self) i??m not adding it to fsGlobalUnit anymore. How to improve this with MDI childs, so ? Is there any way ?
  • Works ok, but the problem is that works just one time. I??m working with MDI forms, who are created at runtime. I??ve put in the onCreate event: procedure TForm1.OnCreate(Sender: TObject); begin  fsGlobalUnit.AddForm(Form1); end; procedure TFor…
  • Well, still doesnt works. Couldn??t you send me an example ? He Give??s me a 'Unknown type: TLabel' exception.
  • Hi. Since i??ve been purchased the Fast Script component, i??m trying to acess the components in the Application, without sucess. I??ve tried to put: fsScript1.AddForm( ... ) fsScript1.fsGlobalUnit.AddClass( ... ) fsScript1.AddObject( ... ) …