Hi all,
I know Spirin is passed away but I have to put in contact with the library owner.
Do you know if the Spirin's company has been take over from someone ?
Thank you in advance
Marco Turco
SOFTWARE XP LLP
Hi all,
I know Spirin is passed away but I have to put in contact with the library owner.
Do you know if the Spirin's company has been take over from someone ?
Thank you in advance
+1
Search on google for FASTREPORT.
I'm not sure, but there are restrictions to talking about the company that bought it here in this forum.
Regards,
We bought the library directly from its website paritetsoft.ru.
It seems that company now only distribute an accounting software, written them about FRH library but no reply at the moment.
Any Russian speaker can help to speak with them and to understand what's the situation ?
Marco,
FastReport was purchased by a competitor of fivewin.
Send me a email:
That I explain to you.
I can not say anything else but the aministrador can punish me. kkkkkkkkkkkkkkkkkkk(smiles).
Regards,
You can talk freely here ![]()
Antonio Linares wrote:You can talk freely here
who is ?
OZ ?
However I am convinced that Fwh can have a report designer with only fwh source. I say this because lately I saw and I could try a small program that did that but I can not tell you more. Fwh has potential that you can not even imagine. We are wasting time and especially resources to stay behind ER or MyRPT or FastReport. Believe me you can do it alone with fwh
Hello, is someone using the fast-report library adapted by the X a i l e r team?
I am evaluating this possibility.
If you go to xailer web site you can see xailer use fastReport
It seems that Ortiz de Zuniga purchased the rights or sources from the widow of Spirin
Thanks Silvio, I have downloaded the evaluation and I am testing it quite successfully. But there are some operations that I can not make it work, that's why I asked.
Hello, I used Spirin's fastreport library. More with his death I had to upgrade to FASTREPORT (x a i le...). The change was not transparent, had to make several adjustments in the original code, I had the support in the time of the xailer. Nowadays I use the FR perfectly. I live with some bugs.
In time, FASTREPORT is fantastic, it would be very important that Mr. Antonio Linares represents this wonderful generator of reports.
AngelSalom wrote:Thanks Silvio, I have downloaded the evaluation and I am testing it quite successfully. But there are some operations that I can not make it work, that's why I asked.
SGS wrote:Hello, I used Spirin's fastreport library. More with his death I had to upgrade to FASTREPORT (x a i le...). The change was not transparent, had to make several adjustments in the original code, I had the support in the time of the -. Nowadays I use the FR perfectly. I live with some bugs.
In time, FASTREPORT is fantastic, it would be very important that Mr. Antonio Linares represents this wonderful generator of reports.
#include "hbclass.ch"
#include "frh.ch"
CLASS TFastReport FROM XFastReport
 VAR cFRLicense INIT ""
 VAR cXALicense INIT ""
END CLASS
Function Main()
Local oFr
 REQUEST DBFCDX
 USE .\DATA\CUSTOMER SHARED VIA "DBFCDX" NEW
 Â
 WITH OBJECT oFr := TFastReport():New()
  :AddDbf( "CUSTOMER", { "Customer->*" } )
  :Create()
  :cFilename := ".\Reports\test.fr3"
  :DesignReport()
  :End()
 END WITH
 CLOSE ALL
Â
Return (nil)