Monday, March 14, 2011

Clear content of a picture box, text box

public btnClear_Click(object sender, EventArgs e)
{
Picturebox1.Image = null;
textbox1.clear();
textbox2.text = "";

}

No comments: