SearchList
Find the syntax, use, parameters, return values, and an example for the SearchList macro command in Connexion client.
Syntax | nNumRecords = CS.SearchList (sSearchTerm, sColumnName, bExactMatch) |
---|---|
Use to | Search for a specified term in the current list data. You can specify the column name to search. You can also specify to match the search text exactly. |
Parameters |
|
Comments | The search is not case-sensitive. |
Return values | An integer, the number of records found. |
Example | Sub Main()
Dim CS As Object If CS.Search(“WC”, “gon,wi,th,w/bks/1983-2003”) > 0 Then MsgBox (nNumRecords) + “ records found” |
What this example does |
|