I am relatively new with access, but do have some experience with it. My weakest skill would have to be the Coding. I do have to give some info on my database before asking my question, so please have patience 
I am currently making a DVD database that is quite large and rapidly coming more complex as I have new ideas to improve functionality. Right now I am trying to help myself with developing a slightly faster method of filling out data for movies. My database is not an easy list of just the names of films, but also has fields like genre, actors, lengths, etc.
I use internet movie database a lot to help me fill out missing data, but am trying to have a hyperlink button take me to the website. I currently have my movie list set up as a vertical split form with the hyperlink button next to each movie title. As of right now the button does function and it does bring me to the website. I used this as my code (take out the "_"):
Private Sub Command25_Click()
Application.FollowHyperlink _
"h_t_t_p_://w_w_w._i_m_d_b_.c_o_m"
End Sub
I wanted to take it a step further but have no idea how to code it. I want the hyperlink button to not just take me to the standard homepage of the site, but to the specific movie on the site. If I search "avatar" on their site I get a web address of "h_t_t_p://w_w_w.imdb._c_om/find?q=avatar&s=all" (Take out the "_"). So If I replaced "Avatar" with lets say "MovieName" and then defined "MovieName" in access as whatever is typed in the movie name field, would that not then open the webpage for each individual movie?
In my head I would think that would work, but don't have the knowledge to code for it. Does anyone have any ideas??
Thanks in advance! I have access 2010 by the way.

I am currently making a DVD database that is quite large and rapidly coming more complex as I have new ideas to improve functionality. Right now I am trying to help myself with developing a slightly faster method of filling out data for movies. My database is not an easy list of just the names of films, but also has fields like genre, actors, lengths, etc.
I use internet movie database a lot to help me fill out missing data, but am trying to have a hyperlink button take me to the website. I currently have my movie list set up as a vertical split form with the hyperlink button next to each movie title. As of right now the button does function and it does bring me to the website. I used this as my code (take out the "_"):
Private Sub Command25_Click()
Application.FollowHyperlink _
"h_t_t_p_://w_w_w._i_m_d_b_.c_o_m"
End Sub
I wanted to take it a step further but have no idea how to code it. I want the hyperlink button to not just take me to the standard homepage of the site, but to the specific movie on the site. If I search "avatar" on their site I get a web address of "h_t_t_p://w_w_w.imdb._c_om/find?q=avatar&s=all" (Take out the "_"). So If I replaced "Avatar" with lets say "MovieName" and then defined "MovieName" in access as whatever is typed in the movie name field, would that not then open the webpage for each individual movie?

In my head I would think that would work, but don't have the knowledge to code for it. Does anyone have any ideas??
Thanks in advance! I have access 2010 by the way.