G
Guest
I created a "Find" dialog box that can be used to control the recordset of
the calling form. I tried several ways to control the other forms recordset.
One attempt looked like this:
[main]!prjtrans.Form.Recordset.Find "Transmittal=" & TransmittalNo
and this:
Forms!main.Form.Recordset.FindNext "TransmittalNo=" & TransmittalNo
This did not either:
Forms.item("Main").Form.Recordset.FindNext "TransmittalNo=" &
TransmittalNo
However I did get it to work by making the parent form recordset object a
global. However, I prefer not to use globals if they can be avoided. Is
there a way?
the calling form. I tried several ways to control the other forms recordset.
One attempt looked like this:
[main]!prjtrans.Form.Recordset.Find "Transmittal=" & TransmittalNo
and this:
Forms!main.Form.Recordset.FindNext "TransmittalNo=" & TransmittalNo
This did not either:
Forms.item("Main").Form.Recordset.FindNext "TransmittalNo=" &
TransmittalNo
However I did get it to work by making the parent form recordset object a
global. However, I prefer not to use globals if they can be avoided. Is
there a way?