This commit is contained in:
2010-11-30 16:02:09 +00:00
parent 16c1ebfdbb
commit 8a09fdbb0c
4 changed files with 164 additions and 154 deletions

View File

@@ -843,6 +843,15 @@ namespace VEPROMS
ppRTxtName.Focus();
}
private void ppRTxtName_Leave(object sender, EventArgs e)
{
if (ppRTxtName.Text == null || ppRTxtName.Text == "")
{
MessageBox.Show("Cannot have a blank Name.");
return;
}
}
}
}