You cannot. In Access time is "time of day", and Short Time therefore cannot go beyond 24 hours. You need to calculate the amount of hours and minutes and construct a string yourself:
DIm MyShortTime As String
MyShortTime=Format(NumberOfHours,"00") & ":" & Format(NumberOfMinutes,"00")