Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.73K
1 Posted Topic
[CODE] this.dgvShortCut.CellValidating += new DataGridViewCellValidatingEventHandler(dgvShortCut_CellValidating); private void dgvShortCut_CellValidating(object sender, DataGridViewCellValidatingEventArgs e) { string ColName = dgvShortCut.Columns[e.ColumnIndex].Name; if (ColName.Equals("DOB")) { if (string.IsNullOrEmpty(e.FormattedValue.ToString())) return; if (!Microsoft.VisualBasic.Information.IsDate(e.FormattedValue.ToString())) { MessageBox.Show("Date Of Birth Date is not in correct format", "D.O.B", MessageBoxButtons.OK, MessageBoxIcon.Warning); e.Cancel = true; } } } [/CODE]
The End.
FijiXzone.com