Customization Question

Trying to set the CheckDuplicatePO box when adding a new customer. The following code will not compile:

Private Sub CustomerEntryForm_Load(ByVal sender As Object, ByVal args As EventArgs)
’ Add Event Handler Code
args.Row(“CheckDuplicatePO”) = True

End Sub

Error: Error: BC30456 - line 55 (512) - ‘Row’ is not a member of ‘System.EventArgs’.

Right…you need to target an epidataview row. Args, as defined in your method, refers to EventArgs.

2 Likes