Autoeng
Why me?
- Local time
- Today, 05:12
- Joined
- Aug 13, 2002
- Messages
- 1,302
On my first big Access project I hired an outside consultant to make the bd perform as I wanted. I have been able to figure out / understand what he did so that on my next project I can do some of the same things. One thing I don't understand is Recordsets and RecordsetClones.
Here is the AfterUpdate code for a combobox that selects a particular record to display on the form.
What is this doing with the RecordsetClone? What are Recordsets and when do you use them?
Autoeng
Here is the AfterUpdate code for a combobox that selects a particular record to display on the form.
Code:
Private Sub cboECNLookup_AfterUpdate()
Dim varReturn As Variant
Me.RecordsetClone.FindFirst "[ECN Number] = '" & Me![cboECNLookup] & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
What is this doing with the RecordsetClone? What are Recordsets and when do you use them?
Autoeng