Windows Develop Bookmark and Share   
 index > Windows Forms General > About Box Show
 

About Box Show

Im working on a simple notepad for my friend how do I show an aboutbox in C# that is allready designed in a button click event?
Jack Knife3  Friday, April 13, 2007 12:06 AM

Hi

you can add about box formnew item-> add about box and show it as follow

private void button1_Click(object sender, EventArgs e)
{
AboutBox1 a = new AboutBox1();
a.Show();
}

Bob zhu - SJTU  Friday, April 13, 2007 8:08 AM
Is this what you're looking for?

Code Snippet

System.Windows.Forms.MessageBox.Show("This is your about text", "This is the title.", MessageBoxButtons.OK, MessageBoxIcon.Information);


Michael Letterle  Friday, April 13, 2007 12:34 AM

no i meant for an abotu box

Jack Knife3  Friday, April 13, 2007 4:16 AM

Hi Jack

or you can use a new form like

Form about = new Form();
about.Show();
about.Text = "About";

Bob zhu - SJTU  Friday, April 13, 2007 6:20 AM

Hi

you can add about box formnew item-> add about box and show it as follow

private void button1_Click(object sender, EventArgs e)
{
AboutBox1 a = new AboutBox1();
a.Show();
}

Bob zhu - SJTU  Friday, April 13, 2007 8:08 AM

You can use google to search for other answers

Custom Search

More Threads

• Display context Menu Images in grid
• Windows menu in simple MDI forms...
• Hardware Information in VB.net 2005
• BalloonTip function not working...
• Throw and Catch Exception--customizing
• Strange: copy controls to a second flowLayoutPanel moves every second (instead of copying)
• Replace value in MergeAction enum
• How to get item listview with KeyDown event?
• Problems with file paths
• Get The Month Clicked in a MonthCalendar Control.