I am trying to automate a website. I have it almost figured out. I am running into a problem.

First, I am trying to populate a field that has a name of fileName.
Here is the source code for the line:
<input type=file name=fileName><br>

Here is what I keep trying to enter
oScout.document.form1.fileName.Value = "H:\Scout\ScoutInPut1-7-2010.txt"
but the developer keeps changing it to (notice the capitalazation in fileName):
oScout.document.form1.Filename.Value = "H:\Scout\ScoutInPut1-7-2010.txt"
How can I work around this?

Thanks
Bruce