Ian,
Thanks for the feed back.
What I mean by a block comment is in Transact-SQL (SQL Server 2000) and Java, a block comment starts with /* and ends with */.
Everything in between the start of the comment and the end of the comment is commented out, whether it consists of multiple lines or
just a couple of characters on one line. That way, when working with multiple lines, you don't have to comment out each line
individually. You just need to put a /* at the beginning of the lines you want commented out and put */ at the end.
Thanks again for all of your help,
Conan