I have this:
var proc = new Process();
proc.StartInfo.FileName = $"mailto:webmaster@mydomain.com? ... .";
proc.Start();
Starting outlook takes some time during which it is not clear anything happens. How can I show a message, saying Outlook is started, which message disappears when outlook comes up? I hope there is some event, I can monitor, that happens when outlook shows up...?