Which web page? Any idea at all?? I've searched extensively and
not found that syntax anywhere.
> there were several methods for
> determining the last row on the page.
Yeah... I'd suggest you use a different one :-)
> I don't really understand what you mean by the uppercase,
> actually, I'm not sure why you would do that at all, can you
> tell me about it?
If the cases actually *do* match letter for letter then ok.... But can you
be *100%* positive of that *100%* of the time??
Uppercase stuff is to level the playing field just in case there is a
difference in case in even *one* of the letters... by making *all* of the
letters the same case on both sides of the equation... Then there's no
possiblity of ...
If "BigThing" = "BIGTHING"
Because we've changed all the letters to upper case.
Using ucase means that ...
Ucase("BigThing") evaluates to "BIGTHING"
So ...
If Ucase("BigThing") = "BIGTHING"...
Actually is
If "BIGTHING" = "BIGTHING"
Did you have any trouble stepping through the code?????????
What happened??