when we have a null character in the middle of a string, the textbox thinks it is the end of it; how can we force a textbox control to not do that ?
when we have a null character in the middle of a string, the textbox thinks it is the end of it; how can we force a textbox control to not do that ?
If you have VB6 you can do
Text1 = Replace(strMyText, vbNullChar, " ")
If you don't have VB6 then use the InStr function and loop through the string looking for and replacing vbNullChar.
------------------
Marty
What did the fish say when it hit the concrete wall?
> > > > > "Dam!"