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:
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

  • gordkgordk St.Catherines On. Canada.
    edited 8:21AM
    seems like you are running in debug mode and the frlib was not compiled with debug info.
    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' +';

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.