Report Application using Interbase-- tutorial
I am working through the "Building a Report Application using Interbase"
tutorial, and when I run the application I get the error
FolderPipeline: 'plFolder' could not be opened.
ppReportExplorer1.FolderPipeline = plFolder
All other components are set to specifics in the tutorial... any ideas?
tutorial, and when I run the application I get the error
FolderPipeline: 'plFolder' could not be opened.
ppReportExplorer1.FolderPipeline = plFolder
All other components are set to specifics in the tutorial... any ideas?
This discussion has been closed.
Comments
Database -> Table -> Datasource -> Pipeline connections to make sure they
are connected. Does the RB_Folder table exist in the database? Did the SQL
script to create the RB tables in Interbase run without errors?
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com
executed the report explorer, and I set the validateSettings property to
false. This seems to work, but I am still curious why the pipeline couldn't
be opened with the validateSettings property set to true.
returns false if the pipelines can't be opened and an error message is
built.
if not(ppReportExplorer1.Execute) then
begin
pnlStatusBar.Caption := 'Error: ' + ppReportExplorer1.ErrorMessage;
MessageBeep(0);
end
else
pnlStatusBar.Caption := 'Explorer Launch Successful.'
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com