How can I enter use the on click event in order to stamp the contents of a textbox into a field on a subform? The subform is displayed as a continuous form.
If the cursor location (absoluteposition) of the subform is on the record you want to update, you can use Fields collection of the recordset of the subform object.
Depends on the data type of the field you are working with as to the way the data must be handled in code.
If the cursor/abs. position of the recordset is not necessarily on the proper record, you can either move the cursor to the right record, or do an update to the recordset (via DAO or an Update Query) to ensure that you wrote to the right record, and then requery the subform object.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.