Instead of the user manually typing in the "video thing" you can just split the URL and check it.
Something like
Something like
Code:
Dim url as string
Dim SplittedURL() as string
url = http://www.youtube.com/watch?v=LO0PgyPWE3o
SplittedURL = url.split("=")
msgbox(SplittedURL(0)) will show everything before the "=" so http://www.youtube.com/watch?v
msgbox(SplittedURL(1)) will show everything after the "=" so thats the "video thing" LO0PgyPWE3o