I don't understand what you are referring to:
This won't suddenly crash. It's clean and it's obvious how the special case IsNull is handled.Code:If IsNull(rsDataSet.Fields(0)) Then txtWhatever.Text = "" Else txtWhatever.Text = rsDataSet.Fields(0) End If
If you have multiple columns in table which are allowed to be NULL then you have to deal with this in your code.
I really don't see the problem.




Reply With Quote