If I use Option Strict On, I get a problem with the btnAdd_Click event code, the line below gets an error saying that "Option Strict disallows late binding":-
Code:
objCommand.Parameters.AddWithValue("@au_id", BindingContext(objDataView).Current("au_id"))
I assume I need to convert this to early binding (or turn off Option Strict - but I do not want to do that).
How can I solve this error?