Sample Applications A-13
//***********************************************************
//* btnClear_Click Event
//* Description:
//* Erase data &
//* Set focus back to txtUPC
//***********************************************************
private void btnClear_Click(object sender,
System.EventArgs e)
{
txtUPC.Text = ""; // Erase any data
txtUPC.Focus(); // Put focus back on the txt box
}
}
}