| Home | All functions | Categories |
vuDisableOthers(*CSTRING,LONG), Signed
Disables or enables all other windows that contain the specified text in their title, based on the value of wDisable.
| Parameter | Data Type | Description |
|---|---|---|
| NameContains | CSTRING(256) | Substring to search for in window titles (e.g., “Microsoft Word”). If blank, all windows will be affected. |
| wDisable | LONG | 1 = Disable matching windows 0 = Enable (re-enable) matching windows |
The number of windows that were enabled or disabled.
wDisable = 1
vuDisableOthers('Microsoft Word', wDisable) ! Disables all running instances of Microsoft Word
wDisable = 0
vuDisableOthers('Microsoft Word', wDisable) ! Re-enables all running instances of Microsoft Word
NameContains is left blank, the function will apply to all windows.| Home | All functions | Categories |