Skip to main content
OCLC Support

CursorRow

Find the syntax, use, parameters, return values, and an example for the CursorRow macro command in Connexion client.
Syntax CS.CursorRow
Use to Indicate or change the row where the cursor is located in a record. The top row is row 1. A row corresponds to a field, regardless of how many lines are in a field.
Parameters None
Return values An integer representing the row number where the cursor is located.
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”

     CS.CursorRow = 2
     CS.CursorColumn = 2
End Sub

What this example does
  • Logs on to Connexion if not already logged on, using the default authorization and password you selected in Tools > Options > Authorizations tab.
  • Searches WorldCat for record number 1.
  • Moves the cursor to the second column of the second row of the record.