GetMessageWaitTime Function
Prototype
Public Declare Function GetMessageWaitTime Lib "TclBridge.dll" () As Long
Input
None.
Output
None.
Returns
The number of milliseconds to wait for an interpreter message. Can be changed with the SetMessageWaitTime function.
COM Results
Not applicable.
Side Effects
None.
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