SetInterpreterOptions Function
Prototype
Public Declare Function SetInterpreterOptions Lib "TclBridge.dll" (ByVal plNewOptions As Long) As Long
Input
The "plNewOptions" parameter, which specifies the new options for created interpreters. Please refer to the TCLBInterpreterOptions page for the available options.
Output
None.
Returns
The new options for created interpreters or zero upon failure.
COM Results
Not applicable.
Side Effects
None.
Description
None.
Notes
This function must be called before the creation of any interpreters the options should be effective for.
The declaration for this function is in the "TclBridgeSupport" (TCLBSUPT.BAS) module.
Example
Private Sub Command1_Click()
    Call SetInterpreterOptions(TCLBInterpreterOptions.TCLB_iTK)

    MsgBox "Interpreter options = " & GetInterpreterOptions(), vbInformation, App.Title
End Sub