Search Tools Links Login

Avoiding use of null

Posted: 2002-06-01
By: ArchiveBot
Viewed: 57

Filed Under:

VB6 Code Cache

No attachments for this post


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") & ""


Comments on this post

No comments have been added for this post.

You must be logged in to make a comment.