When you're assigning the value to your textbox use an empty string at the beginning:
Text1.Text = "" & rs(Index)
------------------
Serge
Software Developer
[email protected]
[email protected]
ICQ#: 51055819
Printable View
When you're assigning the value to your textbox use an empty string at the beginning:
Text1.Text = "" & rs(Index)
------------------
Serge
Software Developer
[email protected]
[email protected]
ICQ#: 51055819
There are several ways around the problem. One of them is to do the following before moving the data to the control. MyValue = MyValue & "". That is just a double-quote and not a blank.
------------------
Marty
Trying to retrive data from DB that initally containing nothing, NULL. Error when copying to a Mask Edit Box.
"Invalid use of Null" with Run-time error 94
Any idea.
Thanks.