Zoeken
Find the syntax, use, parameters, return values, and an example for the Search macro command in Connexion client.
Syntax | nNumRecords = CS.Search (sDatabase, sSearchTerm) |
---|---|
Use to | Search an online database using a search string. Same as using the following menu commands:
|
Parameters |
|
Return values | Number of records found (nNumRecords) |
Example | Sub Main() Dim CS As Object Set CS = GetObject(,“Connex.Client”) If CS.IsOnline = False Then CS.Logon ““, ““, ““ End If CS.Search “WC”, “#1” nNumRecords = CS.Search(“WC”, “gon,wi,th,w”) MsgBox (nNumRecords) & “ records were found for Gone with the Wind” End Sub |
What this example does |
|