Binding a DBNull with a Textbox
I just wonder if people you know this trick I use (VB) all the time to avoid the infamous DBNull headache.
MyTextbox.Text = MyReader("Field") + ""
It's surely cleaner to have a function to check DBNull but I found this more easy and quicker to type.
I am not sure if this has some performances issues, not as I am aware for the moment.
UPDATE : Of course only with String values !