- a Popup" - the property of the form makes no difference in transferring values. I think you are incorrectly referring to opening forms with Opening Arguments & combining events. Setting a frm's popup property makes no difference. I think you're referring to this but this is not the words written.
2 - Opening in ACDIALOG (modal) does not stop execution whatsoever. It is the combination of the loadEvent & encapsulating the sourceFrm as a subForm, using the currentEvent to write the value of the current SubFrm record to it's parentFrm in the opening of the form which traps the event.
3 - Correct me if I'm wrong but the Calculator e.g. you kindly posted relies on events to feed values. Hard to tell as it contains 75,000 different functions/ subroutines...
Pretty much everything you wrote is WRONG If you want help then you should spend more time listening then trying to tell me I do not know what I am talking about. I never understand this when novices do this. They come asking for help on trivial tasks then spend their efforts critiquing suggestions. It makes no sense to me why people do this. I tend to know what I am talking about..
1. If you call a form using the ACDIALOG argument. It most CERTAINLY STOPS form execution in the calling form. Do not listen to me, simply test it you self
In the calling form call Docmd.Open form
In the next line type MsgBox "Code Resumed'
Now test this using acdialog and not using acdialog and tell me when you see the msgbox. In the first case it will be immediate. The second case it will be after the called form closes or is hidden.
2. I am pretty sure I know the difference between modal, popup, and forms open in ACDIALOG. I am not referring to Open args as you suggest since the demo do not rely on. My point is that it is not a good design IMO to have two non-modal forms open at the same time where you are transferring data between each other. If you did this the code would be different than I suggest. But that is a poor design and begging for issues with data integrity. If you got to this point your database is probably not designed correctly. Most good designs have a main form with pop up modal forms so only one form can be activated and the pop up has to close. If you do it this way it drives a coding design.
3. As I mentioned there all multiple ways to pass data between forms. I provided what I believe is a very simple and flexible method.
Main form calls a modal popup.
A value can be passed in as Open Args to set default values
The pop up knows nothing about from where it was called.
The pop up can be canceled or selected (hidden or closed)
The main form reads values from the pop up if the pop up ok was selected
Flexible, lightly coupled, reuseable.
I also demonstrated the use of With Events to trap events in the called form.
WHO cares if the thing that makes the calculator work has a lot of methods. I did not even develop it, but the point was I can open it ACDIALOG and then retrieve the values. Or I demonstrated a way to use with events to grab values.
You can use with events to trap events in another form and not have to open the called form ACDIALOG. This could allow you to then set a lot of properties