private void Char1GI_TextChanged(object sender, EventArgs e)
{
try
{
this.Group[0].skill.SetGatherInfo(Convert.ToInt32(Char1GI.Text));
}
catch
{
if (isError && !Char1GI.Text.Equals(""))
{
ErrorMSG error = new ErrorMSG();
//set error message
error.ErrorLabel.Text = "Error: This box takes integers only (0-9)";
error.Show();
isError = false;
///
Char1GI.Text = "";
////
isError = true;
}//end if
}
}