Chapter7 Updating Records
I have a problem executing the code page 191
Set rst = db.OpenRecordset(``tblMyTable˝)
With rst
.FindFirst ``CustomerKey = `` & Me!CustomerKey
If Not .NoMatch Then `we found the record
.Edit
!CustomerName = ``ABC Construction˝
!CustomerStatus = 1
.Update
End If
End With
There isnt any database given with table "tblMyTable" anywhere in the example code given. If anyone knows something, let me know.
|