Don't know if there is an "official" way to do it but, you could create a function that takes in the two times.
Within the function:
1. Determine the difference in minutes. (DateDiff())
2. Divide this by 60.
3. Move the result of Step 2 (eg.10.75) to a text variable.
3. Take the Left(Variable,Len(variable)-3) of this text variable. (Should be 10)
4. Take the Mod of the division of the difference in minutes by 60. The Mod function gives the "remainder" of a division. Since the division is by 60, it gives the number of 60ths of an hour, ie minutes.
5. Concatinate the two with a colin between them and set the function equal to that.