Input Validation
In this page we'll
- Use the
OnSavingRow
event to validate user input
protected override void OnSavingRow()
{
if (Orders.OrderDate.Year<1990)
System.Windows.Forms.MessageBox.Show("Invalid Year");
}
- IF Statement Explanation
- Input Validation Using Flow Abort Exception
- Message Class
- UserMethods class
Help us improve, Edit this page on GitHub
or email us at info@fireflymigration.com