I have a MainForm, that while activating will call another Form to change app date (modal, show, close), and then make some checks and display a message if it applies in response to the checking.
Is there a way to show (paint) the MainForm, after closing the first Form, but before showing the messages?
Today:
- MainForm.Activate
- DateForm use
- display MessageDlg over desktop (or other apps)
- MainForm painted and visible
I want something like this, but I can figure out how:
- MainForm.Activate
- DateForm use
- MainForm painted and visible
- display MessageDlg over MainForm
Thanks for any idea!