Option Strict on / Late Binding (p.535)
This is in Chapter 16, p. 535.
I have Option Strict On, which apparently means that
late binding is not allowed.
When setting the parameter for the au_id column, this causes a problem
with the BindingContext(objDataView).Current("au_id").
This is the line of code:
objCommand.Parameters.AddWithValue _
("@au_id", BindingContext(objDataView).Current("au_id"))
Other than turning Option Strict off, is there a different way to do this?
Thanks,
Robin
|