JeffreyDavid
Registered User.
- Local time
- Today, 01:08
- Joined
- Dec 23, 2003
- Messages
- 63

I have a form and a subform and the fields in my subform are unbound. I have a save button at the bottom of my form and am trying to code my save button. Here is the top of my code for the save button:
Dim dbs As Database
Dim rss As Recordset
Set dbs = CurrentDb
Set rss = dbs.OpenRecordset("Orders", dbOpenDynaset)
With rss
.AddNew
!EntryDate = txtEntryDate
!SalesPerson = cmbSalesPerson
!CustCode = txtCustCode
Now how do I tell it that I want to save the fields in the subform?