ClydeL,
It sounds like what you need is to add an event handler for the
Binding.Format event. By using an event handler for format you can
replace the NULL with whatever text you want, e.g. "N/A", "(null)", "No
Data" etc.
This also ensures you don't get an error because the binding manager is
trying to set a string property to null.
The reason you don't have a problem with a bit field is because the bit
can either be set to true or false. If the database schema allows for a
null value in the bit field the three state checkbox has a state for null.
There's an example in the VS documentation.
> I have a number of text boxes bound to fields in a datarow selected from a
> dataset. Everything works until one of the fields is null.
> Binding a bit field to a checkbox doesn't have this problem.
> Is this supposed to work with null fields?