or
private void StateRadGridView1_CellValidating(object sender, CellValidatingEventArgs e)
{
GridViewDataColumn column = e.Column as GridViewDataColumn;
if (e.Row is GridViewDataRowInfo && column != null && column.FieldName == "MntStaName")
{
if (string.IsNullOrEmpty((string)e.Value))
{
MessageBox.Show("Description cannot be blank.", "JMS Error Message", MessageBoxButtons.OK, MessageBoxIcon.Stop);
}
}
I have split my forms and my controls in several subprojects of my solution project.
It would be great if you could extend the project upgrade utility so that it can handle solution files and upgrade all projects in the solution project at once.
Regards,
Ramius
![]() |
|