This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
below is my code, my question is everytime it hit 'objRecordSet.MoveFirst', it comes back with an error "Either BOF or EOF is True, or current record has been deleted".
objRecordSet.RecordCount always return 400 (number of users that we have)
Could you please fix my code?
========================
Set objConnection = CreateObject("ADODB.Connection")
Set objCommand = CreateObject("ADODB.Command")
objRecordSet.MoveFirst
If Not ( objRecordSet Is Nothing ) Then
MsgBox CStr(objRecordSet.GetString())
While Not objRecordSet.EOF
Msgbox CStr(objRecordSet.Fields(“cn”).Value)
Wend
End If
End If
Feedback number WEBB8KK8FU created by ~Rebecca Elnipuletsi on 08/09/2011
Status: Open
Comments: