protected void ShowOfflineLaunchOption(string accountAttemptingToLogin, string oldestLinkedAccount, bool closeParentWindow) { if (this.InvokeRequired == true) { this.Invoke(new ShowOfflineLaunchOptionDelegate(ShowOfflineLaunchOption), accountAttemptingToLogin, oldestLinkedAccount, closeParentWindow); return; } var offlineLaunch = new OfflineLaunch("Your account: " + accountAttemptingToLogin + " has been linked with another account: " + oldestLinkedAccount + ". Please log in with this account instead. If you need assistance, please use the below help link.", "http://www.freeallegiance.org/FAW/index.php/Linked_account", "Get More Information Online."); offlineLaunch.TopMost = true; offlineLaunch.ShowDialog(); if (closeParentWindow == true) { this.DialogResult = System.Windows.Forms.DialogResult.None; this.Close(); //this.CloseForm(); } }