Button Function Change

  • Thread starter Thread starter GucciBachem
  • Start date Start date
G

GucciBachem

Guest
I want to be able to change a buttons funtion when i click on one of the selections.

So I want

/// <Dev Server>
private void ToolStripMenuItem3_Click(object sender, EventArgs e)
{

}
/// <Main Server Server>
private void ToolStripMenuItem1_Click(object sender, EventArgs e)
{

}
}

}

I basically want tool strip menu to change the function of lets say button 1, to where if i click on Dev Server it would change the button function to where it would route me to there, but if i want to then click on Main Server i want button 1 to bring me there.

Continue reading...
 
Back
Top