Hi, you could do something like this:
Dim intHours as integer
intHours = Cint(RIGHT(<Your_Field>, Len(<Your_Field>) - Instr(<Your_Field>, '.')))
Basically, you're taking the length of the field, and subtracting the position of the decimal (and then retrieving everything to the right of it).
HTH,
Doc Tree