Define a Runtime Command
- Last UpdatedFeb 06, 2024
- 1 minute read
To display the Kernel window, define a runtime command that calls the DspKernel function, passing 1 in the iMode argument. For example:
|
Command |
DspKernel(1); |
|
Comment |
Displays (opens) the Kernel window |
Note: The Kernel will not display if the logged in user is not assigned to a Role that has the Kernel Access property set to "Full Access" or "Read Only".
To close the Kernel window, call the DspKernel() function again, passing 0 in the iMode argument:
|
Command |
DspKernel(0); |
|
Comment |
Closes the Kernel window |