In B4A, I use this code:
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
In B4i there is no DateTime.TimeParse command.
How can I achieve the same result. My goal is to check whether a time falls within a certain range
			
			
			
				B4X:
			
		
		
		Dim StartTime As Long
    Dim EndTime As Long
    DateTime.TimeFormat ="HH:mm:ss"
    StartTime = DateTime.TimeParse("13:00:00")
    EndTime = DateTime.TimeParse("14:00:00")
	In B4i there is no DateTime.TimeParse command.
How can I achieve the same result. My goal is to check whether a time falls within a certain range