Hi to all,
At my program i dynamicly add Buttons to my form
{
   ...
   Button bt = new Button();
   bt.Text = "bla bla";
   bt.MouseClick += new MouseEventHandler(bt_MouseClick);
   myPanel.Controls.Add(bt);
   ... 
}
void bt_MouseClick(object sender, MouseEventArgs e)
{
    TabPage _tab = new TabPage();
    _tab.Text =  ??? // I want to get the Button's text ! this.Text returns me the
                     //main form.Text 
}
How can access my dynamic Buttons properties ? How can I understand whick button is clicked either getting its text.
Thanks.