How to get rid of this error?
private static void edvPOAllLines_EpiViewNotification(EpiDataView view, EpiNotifyArgs args)
{
// ** Argument Properties and Uses **
// view.dataView(args.Row)("[FieldName]")
// args.Row, args.Column, args.Sender, args.NotifyType
// NotifyType.Initialize, NotifyType.AddRow, NotifyType.DeleteRow, NotifyType.InitLastView, NotifyType.InitAndResetTreeNodes
if (args.NotifyType == EpiTransaction.NotifyType.AddRow ||
args.NotifyType == EpiTransaction.NotifyType.Initialize ||
args.NotifyType == EpiTransaction.NotifyType.DeleteRow ||
args.NotifyType == EpiTransaction.NotifyType.InitLastView ||
args.NotifyType == EpiTransaction.NotifyType.InitAndResetTreeNodes)
{
if (args.Row > -1)
{
view.dataView[args.Row]["Number02"]=(eneLineVolume.Value);
//eneLineVolume is a numeric editor.
}
}
}