You are creating a DataTable. You use the following code segment to create the DataTable. (Line numbers are included for reference only.)
01 Dim dt As New DataTable("Products")
02 dt.Columns.Add(New DataColumn("Price", _ GetType(Decimal)))
03 dt.Columns.Add(New DataColumn("Quantity", _ GetType(Int32)))
04 Dim dc As DataColumn = New DataColumn("Total", _ GetType(Decimal))
05 dt.Columns.Add(dc)
You need to ensure that the Total column is set to the value of the Price column multiplied by the Quantity column when new rows are added or changed. What should you do? ()