ISDBScriptControl::UnRegisterHandler
From MMWiki
CoClass SDBScriptControl, Interface ISDBScriptControl
Sub UnRegisterHandler(HandlerName As String)
[edit]
Parameters
| Name | Type | Description |
|---|---|---|
| HandlerName | String | Procedure name of the handler (string) |
[edit]
Method description
Unregisters all COM object events that are handled by the given handler.
[edit]
Example code
Script.RegisterEvent SDB, "OnShutdown", "ShutdownHandler" '.... Script.UnRegisterHandler "ShutdownHandler" Sub ShutdownHandler ' Event code goes here.... End Sub
