Thread
:
A Button That Activates The Other Buttons Code
View Single Post
Feb 7th, 2007, 7:05 AM
#
4
r30
Newbie
Join Date: Feb 2007
Posts: 3
Rep Power:
0
private void doThisStuff()
{
int i = 0;
string str = "All your commands can go here.";
}
private void button1_Click(object sender, EventArgs e)
{
doThisStuff();
}
private void button2_Click(object sender, EventArgs e)
{
doThisStuff();
}
r30
View Public Profile
Find More Posts by r30