From my windows installer custom action, I want to show some small window that tells the user what I am doing right now.
I know that I can show a message with
MessageBox.Show("Error while signing in: Credentials for mail address " + username + " did not suffice for authentication", "Authentication error");
But before I can throw the error, I have to wait for timeout, which can take some seconds, and I want the user to know that I am trying:
MessageBox.Show("Validating credentials against Exchange Webservice", "Validating credentials");
So I tried to remove the buttons:
MessageBox.Show("Validating credentials against Exchange Webservice", "Validating credentials", MessageBoxButtons.NONE);
but there is no "NONE" buttons, I always have to choose at least one (for instance "OK"). What am I missing here?