Sending WM_COMMAND to a TMenuItem
In my Delphi form's OnShow method, I determine that a dialog must be opened automatically once the form is opened - and I should be able to do this by simulating a click on a menuitem. However, calling menuitem.Click brings up the dialog before the main form has opened - which is not what I want. I expect that should do what I want, bu...