W
Wayne Wengert
I am trying to set a field to Null using code such as:
dr("Contact2") = DBNull
But VB.NET won't accept that. I tried:
dr("Contact2") = Nothing
but that tells me to use DBNull
What is the correct syntax to accomplish this?
Wayne
dr("Contact2") = DBNull
But VB.NET won't accept that. I tried:
dr("Contact2") = Nothing
but that tells me to use DBNull
What is the correct syntax to accomplish this?
Wayne