> if (theSN == "test") {result = true;}
> else {result = false;};
> return result;
Easy! But easy because it's something you learn to hate :-)
if (theSN.equals("test") { result = true; }
Also:
theSN.toLowerCase().equals("test")
works nicely too.
Good luck!
-- TJ Grant (tatewake@...)
Inspired Communications. http://inspired.netstreet.net/
Phone: 407-728-7563