| Since PowerBuilder 4 you have the ability to dynamically alter the
library search path at runtime. This is very useful for large reporting applications that
want to add reporting libraries without redeployment of the executable and also to allow
the user the ability to create their own reports in their own personal PBL and save/reload
the reports. It is also useful for large systems where you can profile a users use of
the application and set the library list so that the objects they use the most are closer
to the top of the library list.
applicationname.SetLibraryList ( filelist )
Example
myapp.SetLibraryList("reports.pbd,dw.pbd,query.pbd")
|