Hi Hack!

Quote Originally Posted by Hack
Good point Max Peck.

It should be
Code:
If Text266.Text = vbNullString
Actually he needs to say:

If Trim(Text266.Text) = vbNullString. Otherwise an imbedded blank will fail that test. vbNullString is not the same as a SQL NULL - it's simply ("").

-Max