SetMessageWaitTime Function
Prototype
Public Declare Sub SetMessageWaitTime Lib "TclBridge.dll" (ByVal plNewMilliseconds As Long)
Input
The "plNewMilliseconds" parameter, which specifies the new number of milliseconds to wait for an interpreter message.
Output
None.
Returns
None.
COM Results
Not applicable.
Side Effects
Alters the number of milliseconds to wait for an interpreter message for all threads in the process. Changes are effective immediately.
Description
None.
Notes
The declaration for this function is in the "TclBridgeSupport" (TCLBSUPT.BAS) module.
Example
Private Sub Command1_Click()
    Call SetMessageWaitTime(100)

    MsgBox "Will wait " & GetMessageWaitTime() & " milliseconds for an interpreter message.", vbInformation, App.Title
End Sub