Access 2007 / VBA - Multiple Instances of Form, Update controls on specific instance from Module
问题 I am using Allen Browne's method for creating and managing multiple instances of a form. I am stuck on how to reference controls or properties on a specific instance of the form from a VBA Module. Here is how I open a new instance: 'Purpose: Open an independent instance of form frmMasterRecord. Dim frm As Form 'Housekeeping myFilter = Trim("" & myFilter) 'Open a new instance, show it, and set a caption. Set frm = New Form_frmMasterRecord frm.ServerFilter = myFilter frm.ServerFilterByForm =