O
Orlando
Hi I type those instructions for a command button, I created the recordset
the recordcount tell me that there are 26 records, that is right but I dont
know how to get access to the information, 2 of the fields are AssetTag (key)
and manufacturerID, my question is how can I see the information.
Thanks
Private Sub cmdPrueba_Click()
Dim dbComputers As DAO.Database
Dim rcdAssetTag As DAO.Recordset
Set dbComputers = CurrentDb
Set rcdAssetTag = dbComputers.OpenRecordset("tblComputers", dbOpenTable)
MsgBox rcdAssetTag.RecordCount
If rcdAssetTag.EOF Then
MsgBox " no hay registros"
End If
End Sub
the recordcount tell me that there are 26 records, that is right but I dont
know how to get access to the information, 2 of the fields are AssetTag (key)
and manufacturerID, my question is how can I see the information.
Thanks
Private Sub cmdPrueba_Click()
Dim dbComputers As DAO.Database
Dim rcdAssetTag As DAO.Recordset
Set dbComputers = CurrentDb
Set rcdAssetTag = dbComputers.OpenRecordset("tblComputers", dbOpenTable)
MsgBox rcdAssetTag.RecordCount
If rcdAssetTag.EOF Then
MsgBox " no hay registros"
End If
End Sub