I have a form/subform. The form is set up with all the fields being unbound. When the user hits the Done button, the data is added to a new record in a table with VBA. This limits the possibilities for multi-user interference and other errors.
I want to have a subform with the same properties, I don't want any of the data bound to a table. I can populate the recordsets in VBA and do the other manipulation I need to do. However, I haven't been able to link the populated recordset and the subform so that the form displays the data in the recordset.
doesn't work.
Any suggestions? Jonathan
________________________________________
It is not fair to ask of others what you are unwilling to do yourself.
-Eleanor Roosevelt
I want to have a subform with the same properties, I don't want any of the data bound to a table. I can populate the recordsets in VBA and do the other manipulation I need to do. However, I haven't been able to link the populated recordset and the subform so that the form displays the data in the recordset.
Code:
dim rst as recordset
...(open and populate recordset)
form.recordsource = rst
Any suggestions? Jonathan
________________________________________
It is not fair to ask of others what you are unwilling to do yourself.
-Eleanor Roosevelt