Originally posted by Phillip Browne:
...I've figured out most of the code...
Welcome to JavaRanch!
Have you
compiled this code yet? Don't wait until it's "done" to compile.
You should recompile each time you add something, so you don't end up with errors that build on each other.
Also, if "Time" is java.sql.Time, you should check the API. Most of the methods are deprecated. The non-deprecated methods are inherited from java.util.Date, so you might want to consider using Date instead. Better yet, use java.util.Calendar.
[ March 08, 2008: Message edited by: marc weber ]