A family of Microsoft relational database management systems designed for ease of use.
I appreciate you following through on this thread. Could you clarify your last statement? When I open a window for this purpose I don't want it to remain open on the screen once the user has made their selection of data. Are you saying that I could/should disable the PopUp property of the same form I'm using now and essentially still use it in the way I am now?
I don't see why not. Bear in mind, of course, that I don't know all the details of how you're using the form now. But I assume that you open the form from another form, the user makes some sort of selection, and then some event causes code behind the form to transfer data to the original form and close this one. None of that requires this form to have its PopUp property set. You may possibly want to either open the form in dialog mode, or have its Modal property set, but I don't think the PopUp property ought to be required.
Why don't you experiment with the way the form behaves without its PopUp property set, and see what difference it makes? If it doesn't behave the way you want, then let's consider how to address that problem.