View Single Post
Old Feb 7th, 2007, 7:05 AM   #4
r30
Newbie
 
Join Date: Feb 2007
Posts: 3
Rep Power: 0 r30 is on a distinguished road
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 is offline   Reply With Quote