frReport1.LoadFromFile

The code :
if OpenDialog1.Execute then
begin
frReport1.LoadFromFile(OpenDialog1.FileName);
frReport1.DesignReport;
end;

Gives an error :
List Index Out Of Bounds
In FR_Class at row :
AddObject(b, '');

How to solve this ?
Please help !

Thx

Comments

  • gordkgordk St.Catherines On. Canada.
    edited 8:45AM
    hi
    loadfrom file requires fullpathname +filename as a string.
    check to see what is being returned in the filenamestring from the filenameproperty of fileopendialog
    may have to look like
    loadfromfile('+(opendialog1.filename)+')
    regards
    gord ;)

Leave a Comment