property Connection.Strategies as Strategies
Returns a collection of strategies that can be used for queries

TypeDescription
Strategies A Strategies object that holds a collection of the strategies available on the server.

Use the Strategies property to get the collection of available strategies. Use the Dictionaries property to get the collection of available dictionaries. Use the CreateQuery property to query a DICT server.

The following sample displays the collection of strategies available on the DICT server:

Private Sub Form_Load()
    Dim c As EXDICTCLIENTLibCtl.Connection
    Set c = Client1.OpenConnection("dict.org")
    If Not (c Is Nothing) Then
        Dim d As EXDICTCLIENTLibCtl.IStrategy
        For Each d In c.Strategies
            Debug.Print d.Name & " " & d.Description
        Next
        c.Close
    End If
    Set c = Nothing
End Sub