dmbSetBrowserInteractions
dmbSetBrowserInteractions(
[ ?openDesignOption { t | nil } ]
[ ?openPlaceInstanceOption {t | nil} ]
[ ?openOthersOption { t | nil } ]
)
=> t / nil
Description
Specifies whether the Library Browser is automatically opened when certain types of forms appear. This function is provided for backward compatibility with only the 4.3.4 version.
You should remove any .cdsinit calls and replace with the following .cdsenv variables (in the .cdsenv file):ddserv.browser onOpen onOther
ddserv.browser onPlace
ddserv.browser
Or, you can explicitly call envSetVal in your .cdsinit file: envSetVal( "ddserv.browser" "onOpen" 'boolean nil)
envSetVal( "ddserv.browser" "onPlace" 'boolean t)
Arguments
All the arguments for closing are no longer applicable.
Value Returned
|
Execution of the function failed if any of the input parameters is invalid. |
Example
dmbSetBrowserInteractions( ?openOthersOption t)
Return to top