Source File not found:
I have installed the trial version of Fast Reports 4.0. Every thing works
good untill I run the program.
I have narrowed it down to this line:
I need to send some information which are in variables to the report.
When I execute the report, I get:
Source File not found:fs_iilparser.pas
an entry box comes up and as browse button is shown and there is a checkbox
with the caption "Add directory to Debug Source Path"
I get the same thing for frxClass.pas.
the .dcu and .res files are in c:\program files\FastReport 4\LibD6
I have that path in my program options - directories - search path and debug
paths. Also in my Environment Options in the library path and browsing
path....
I would like to buy this if I can get this to work but with no support I am
afaid to waste my money.
Thanks for your help in advance
good untill I run the program.
I have narrowed it down to this line:
frxReport1.Variables['Job'] := 'test';
I need to send some information which are in variables to the report.
When I execute the report, I get:
Source File not found:fs_iilparser.pas
an entry box comes up and as browse button is shown and there is a checkbox
with the caption "Add directory to Debug Source Path"
I get the same thing for frxClass.pas.
the .dcu and .res files are in c:\program files\FastReport 4\LibD6
I have that path in my program options - directories - search path and debug
paths. Also in my Environment Options in the library path and browsing
path....
I would like to buy this if I can get this to work but with no support I am
afaid to waste my money.
Thanks for your help in advance
Comments
read the programmers manual chapters on working with categorized variables. when passing string values, the value passed into the variable must endup as 'test' or you will trigger the parser to calc a value for test which will also fire the ongetvalue event of the tfrxreport component and since you dont have an event handler coded for that event, thus the error.
remember Delphi strips string delimiters.
correct way to pass a string value.
frxReport1.Variables := '+'test' +';