Page 1 of 1

+=5 for time ?

Posted: Wed Mar 14, 2012 4:18 am
by wallebalboa
any easy way to increase/decrease a time property with a button? i use the -=5 function to increase other values, is it possible to do the same with time? cant figure out the syntax... (i wanna set wake-up time easy..;-) )

Re: +=5 for time ?

Posted: Wed Mar 14, 2012 3:38 pm
by Richard Naninck
Just script it. I can't think of any other simple solution

Code: Select all

Sub GUI_Minute(Data)
Dim Minuut

	Minuut = CInt(GetPropertyValue ("Agenda.GUI Minute"))
	
	Select Case Data
		Case "+": Minuut = Minuut + 1
		
			  If Minuut >= 60 Then
			  	Minuut = 0
			  End If
			  
		Case "-": Minuut = Minuut - 1
		
			  If Minuut < 0 Then
			  	Minuut = 59
			  End If
	End Select
	
	Minuut = L_Pad(Minuut, 2, "0")
	SetPropertyValue "Agenda.GUI Minute", Minuut
End Sub