|
-
Feb 15th, 2000, 01:26 AM
#1
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 ?
-
Feb 15th, 2000, 02:00 AM
#2
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!"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|