J
JohnE
I have a continuous form that has a small button at the end of each record
that takes the user to another form showing the detail of the selected
record. But, the current way that I open the detail form is the following;
DoCmd.OpenForm "frmChangeRequestDetail", acNormal, , "ChangeRequestID =" &
Me.ChangeRequestID
This opens the form in a filtered manner. The detail form has on it a
combobox that is used to select other records from the list. But, when the
small button on the continuous form is used, it renders the combobox on the
detail form useless. Is there a different (and better way) to open the
detail form and have it go to the selected record on the continuous form?
Thanks.
.... John
that takes the user to another form showing the detail of the selected
record. But, the current way that I open the detail form is the following;
DoCmd.OpenForm "frmChangeRequestDetail", acNormal, , "ChangeRequestID =" &
Me.ChangeRequestID
This opens the form in a filtered manner. The detail form has on it a
combobox that is used to select other records from the list. But, when the
small button on the continuous form is used, it renders the combobox on the
detail form useless. Is there a different (and better way) to open the
detail form and have it go to the selected record on the continuous form?
Thanks.
.... John