How to make "textboxUsername.text" text bold in this example?
MessageBox.Show("Username " + textBoxUsername.Text + " already exists! Please choose another one.", "Message");
Thanks.
How to make "textboxUsername.text" text bold in this example?
MessageBox.Show("Username " + textBoxUsername.Text + " already exists! Please choose another one.", "Message");
Thanks.
This is no possible, as the MessageBox API exposes to text-formatting options.
The best way is to create your own form and make it look like a message box (this isn't so hard, it's just a modal dialog with a button on it).