Newbie
Hi. Using fastReports I can understand how to create reports on a single PC, adding items to the report adds them to the .dfm file. If I then open a report 'template' (script file, fr3) the controls added to the form are used to compile the report. What if I now give this template file to another user on another computer? I'll get Tfrx<componentName> not found.
That is using the TfrxReport component. So for example: frxReport.LoadFromFile(FTemplate);
... will give the reaised exception class EClassNoFound and for example TfrxADOTable not found...
I'm probably being rather ignorant so sorry and thanks in advance.
What I need is that one user can create a report script and this can then be used by multiple users on different PCs.
N
<E D I T>
Adding "frxDCtrl, frxRich, frxCross, frxOLE, frxBarcode, frxChBox, frxGradient, frxChart, frxADOComponents" to the uses fixes this problem I believe...
That is using the TfrxReport component. So for example: frxReport.LoadFromFile(FTemplate);
... will give the reaised exception class EClassNoFound and for example TfrxADOTable not found...
I'm probably being rather ignorant so sorry and thanks in advance.
What I need is that one user can create a report script and this can then be used by multiple users on different PCs.
N
<E D I T>
Adding "frxDCtrl, frxRich, frxCross, frxOLE, frxBarcode, frxChBox, frxGradient, frxChart, frxADOComponents" to the uses fixes this problem I believe...