I once posted an issue on this platform concerning entering data into a subform with an input box and was advised to rather use another form to enter data into the subform instead of an input box. I am writing a database program and I have seen the relevance of this advise. I realize that using another opened form to enter data into the subform is the best but am stuck. How do I reference the subform on this opened form which is totally separate from the Subform and its main form.
I tried but it did not work out
This is how I referenced the subform on the one am using to enter the data.
The subform is a continues which I do not want users to enter data directly into but rather provided a command button which calls another form for the data entry.
The Subform is called LibraryOrderSch which is in a main form called LibraryF. The form I using for the data entry is called Library Order Form
Am stuck and need help.
I tried but it did not work out
This is how I referenced the subform on the one am using to enter the data.
Code:
forms![LibraryF].[LibraryOrderSch]!ISBN = Me.SerialNumber.Value
The subform is a continues which I do not want users to enter data directly into but rather provided a command button which calls another form for the data entry.
The Subform is called LibraryOrderSch which is in a main form called LibraryF. The form I using for the data entry is called Library Order Form
Am stuck and need help.
Comment