J
Joseph Atie
i have an unbound sub_form on an unbound form.
i load a recordset to my subform, do some operations and then move on.
now the recordset only has a lifespan long enough to load inself to the form
and then it should expire. give this fact i expeceted taht i would need to
create another recordset on the far side of the form to collect the data that
was modified and update it to the table, i.e allowing a roll back function if
you were unhappy with the changes.
how is it that if i modify the data loaded to the form and then close the
form, the modifications i made show up in the table referenced by the
recordset.
is this the way it is supposed to work? it is very handy but seems to good
to be true.
i am using the line
set form!recordset = rs (rs is the recordset)
does this copy the full recordset to the form? my expectation is that it
would simply populate the forms recordset with the data from the recordset i
called.
i load a recordset to my subform, do some operations and then move on.
now the recordset only has a lifespan long enough to load inself to the form
and then it should expire. give this fact i expeceted taht i would need to
create another recordset on the far side of the form to collect the data that
was modified and update it to the table, i.e allowing a roll back function if
you were unhappy with the changes.
how is it that if i modify the data loaded to the form and then close the
form, the modifications i made show up in the table referenced by the
recordset.
is this the way it is supposed to work? it is very handy but seems to good
to be true.
i am using the line
set form!recordset = rs (rs is the recordset)
does this copy the full recordset to the form? my expectation is that it
would simply populate the forms recordset with the data from the recordset i
called.