In the show method, there is an optional parameter called "ownerform",
What is that for ? I understand it is to specify the component which owns the form being shown. But why we need this argument?
Printable View
In the show method, there is an optional parameter called "ownerform",
What is that for ? I understand it is to specify the component which owns the form being shown. But why we need this argument?
It appears that this property, when showing a non-modal form from another (Owner) form, will cause the second form to be unloaded if the ownerform is unloaded.
Also, the form you're showing will always be on top of it's Owner Form.
Thank you ,ELampman. I just test it and you are right.