|
Go
![]() |
New
![]() |
Find
![]() |
Notify
![]() |
Tools
![]() |
Reply
![]() |
|
I want to know witch operation (when manipulate a recordset) can put information in the error object ?
I know for Open rsGrpEmp.Open("Find"); if (rsGrpEmp.Errors.Count > 0) ... but for the rest ? MoveFirst(),MoveNext(), Update() ... ? thx |
|||
|
Operations like the following populate the Error object:
nrs.Fields.Item("fieldname").Value = "string" Update() clears the error count before doing the update, but it will populate the Error object. So, if you want to check for validation errors, etc. on an individual field, you need to do so after setting each value. I don't now about MoveFirst() and MoveNext(). |
||||
|
| Previous Topic | Next Topic | powered by eve community |
| Please Wait. Your request is being processed... |
|

