Private Sub FindSolicitorID()
Dim Cnxn1 As ADODB.Connection
Dim oRS As ADODB.Recordset
Dim sSQL As String
Dim lID as Long
'set this to the system record of the solicitor
lID = 280
'search the database based on the system record ID of the solicitor
sSQL = "SELECT USER_ID FROM USERS WHERE CONSTITUENTID = " & lID & ""
Set Cnxn1 = New ADODB.Connection
'create the connection string
Cnxn1.ConnectionString = "DSN=dsnname;UID=username;PWD=pwd;"
Cnxn1.Open
Set oRS = Cnxn1.Execute(sSQL)
oRS.MoveFirst
'loop through the solicitors and return the User_ID
Do Until oRS.EOF
Debug.Print oRS.Fields("USER_ID")
oRS.MoveNext
Loop
oRS.Close
Cnxn1.Close
Set oRecord = Nothing
End Sub
Disclaimer: We provide programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes you are familiar with Microsoft Visual Basic and the tools used to create and debug procedures. Our Customer Support can help explain the functionality of a particular procedure, but we will not modify, or assist you with modifying, these examples to provide additional functionality. If you are interested in learning more about the VBA and API modules, contact your account manager.