I have two textboxes that store time. I want to find the difference of hours between two times. The following code doesn't work.

a = TextBox6.Value
b = TextBox7.Value
c = timediff(TextBox7.Value, TextBox6.Value)
Thanks