iankerry
Registered User.
- Local time
- Today, 02:40
- Joined
- Aug 10, 2005
- Messages
- 190
Hi
I have a button on my form which when pressed goes to imdb.com and does a search for the film name that is on the record. This used to work but now I get a %20 instead of spaces when I arrive at the imdb site. (127%20Hours instead of 127 hours)
I think I have to use underscore in the film name to make it work again?
If this is the only option, how can i turn any spaces into underscores? Or any other ideas gratefully accepted!
Ian
I have a button on my form which when pressed goes to imdb.com and does a search for the film name that is on the record. This used to work but now I get a %20 instead of spaces when I arrive at the imdb site. (127%20Hours instead of 127 hours)
I think I have to use underscore in the film name to make it work again?
Code:
Dim imdb
Dim searchterm
imdb = "http://imdb.com/find?q="
searchterm = imdb & filmtitle.Value
Application.FollowHyperlink searchterm
If this is the only option, how can i turn any spaces into underscores? Or any other ideas gratefully accepted!
Ian