I have a form with a few memo fields. The form is not big enough to allow users to edit these memo fields very well. So I created a new form with just one big text box and have the form pop up when the user double clicks one of the memo fields from the previous form. Looks like this:
stDocName = "frmInputMemo1"
stLinkCriteria = "[AfieldID]=" & Me![AfieldID]
DoCmd.OpenForm stDocName, acNormal, , stLinkCriteria
The popup form "frmInputMemo1" is bound to the table and field that the user wanted to edit.
This works, but just for that one memo field. I would have to create more popup forms to allow the same for the other memo fields.
How can I do this same thing but reuse the same popup form for all the memo fields.
stDocName = "frmInputMemo1"
stLinkCriteria = "[AfieldID]=" & Me![AfieldID]
DoCmd.OpenForm stDocName, acNormal, , stLinkCriteria
The popup form "frmInputMemo1" is bound to the table and field that the user wanted to edit.
This works, but just for that one memo field. I would have to create more popup forms to allow the same for the other memo fields.
How can I do this same thing but reuse the same popup form for all the memo fields.
Last edited: