ui.Interface.loadToolbar()

 

This method is used to load a toolbar. The syntax of its invocation is as follows:

 

CALL ui.Interface.LoadToolbar (file_name)

 

where file_name = a STRING variable standing for the file name containing the toolbar to be loaded definition and the path which is optional (the file should be located on an application server)

 

Here is an example of the loadToolbar() method calling:

 

#loads the toolbar defined in mytoolbar_file

CALL ui.Interface.LoadToolbar("mytoolbar_file")

 

It is advisable not to specify the file extension. It is automatically added by the runtime system when the file is determined: initially the system searches for the file with the name specified with the .tb2 extension, if it does not exist the .fm2 file is being searched for. In case the file with the name specified does not exist, the corresponding runtime error occurs.

 

However, it is still possible to specify the file containing the toolbar definition as "mytoolbar_file.fm2". If there is no such a file, an error will occur at runtime.

 

 

Third-party files containing the toolbar definition are converted into the .tb2 format.

 

 

Related articles:

Toolbar