Use DateDiff()
DateDiff("n", [TimeIn], [TimeOut])/60You need to determine the difference in minutes as DateDiff returns a LONG value. Just divite that by 60 to get the difference in hours.
If you wanted to, you go even determine the difference in seconds and convert that to hours but that is...