I have a dialog-based application.
I need to show a child window like this:
(1) First, the application's main dialog window will show up,
(2) then, a child dialog window will show up automatically on top of that.
You know, it is not enough to call the child window's ShowDialog()
in the parent window's constructor or load event. Coz in those cases, the child window will appear first.
What should I do to achieve that?