|
|
|
|
|
TabLoadConfiguration (Function) In french: OngletChargeConfiguration Restores the configuration of dynamic tabs in a Tab control. This configuration was saved in string format by TabSaveConfiguration. // Asks the user for the configuration that will be loaded sFile is string  // Opens the file picker sFile = fSelect("", "", "Select a configuration file...", ... "Dashboard configuration" + TAB + "*.conf", "*.conf") // If a file is selected IF sFile <> "" THEN // Retrieves the configuration found in the file sConfiguration is string = fLoadText(sFile) // Loads the configuration IF TabLoadConfiguration(TAB_DynTab, sConfiguration) THEN ToastDisplay("The configuration was loaded", toastShort, vaMiddle, haCenter) ELSE Error("Error while loading the configuration", ErrorInfo()) END END
Syntax
<Result> = TabLoadConfiguration(<Tab control> , <Configuration>)
<Result>: Boolean - True if the configuration was loaded,
- False if an error occurs. If an error occurs, the ErrorOccurred variable is set to True. To get more details on the error, use ErrorInfo with the errMessage constant.
<Tab control>: Control name Name of the Tab control to be used. <Configuration>: Character string Configuration of the dynamic tabs saved by TabSaveConfiguration.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|