Can i create a Message Box without Border ?
Thanks
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jaish MathewsPosted Aug 8, 2010, 8:23 AM
Add a new form with below properties. May be named Form2
More over add a close button too with form closing code.
Now you can use this from in side any other form to dislay as a dialog like below
private void button1_Click_2(object sender, EventArgs e)
{
Form2 dialog = new Form2();
dialog.ShowDialog();
}