|
-
Apr 7th, 2003, 11:36 PM
#1
Thread Starter
Addicted Member
Replace ? HELP!
Dim x As String
x = txtURL.Text
x.Replace(" ", "+")
txtURL.Text = x
Why does this not replace the spaces with a +
I have tried
txtURL.Text.replace (" ". "+")
that does not work either
-
Apr 8th, 2003, 12:17 AM
#2
Addicted Member
Re: Replace ? HELP!
Originally posted by Stick
Dim x As String
x = txtURL.Text
x.Replace(" ", "+")
txtURL.Text = x
Why does this not replace the spaces with a +
I have tried
txtURL.Text.replace (" ". "+")
that does not work either
Try this:
txtURL.Text = Replace(TxtURL.Text," ","+")
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
|