Avoiding use of null
How do you avoid the "Invalid use of null" error when reading null values from a database?If you try to retrieve a null value (empty field) from a database, you will get the error: "Invalid use of Null". Here is one way to get around this problem: ..
Original Author: VB FAQ
Code
TextBox.Text = MyTest.Fields("TestFld") & ""
Loading Comments ...
Comments
No comments have been added for this post.
You must be logged in to make a comment.