Ult902 Posted April 26, 2009 Posted April 26, 2009 been a while. just need 12 hour time displayed whenever i use @hour it's going to be used in this format: "text" & @hour & "more text" @min i really can't find anything in the readme or here
Richard Robertson Posted April 26, 2009 Posted April 26, 2009 (edited) If @HOUR > 12 Then $HOUR = @HOUR - 12 ElseIf @HOUR = 0 Then $HOUR = 12 Else $HOUR = @HOUR EndIf "text" & $hour & "more text" & @min Edited April 26, 2009 by Richard Robertson
Valuater Posted April 26, 2009 Posted April 26, 2009 If @HOUR > 12 Then $HOUR = @HOUR - 12 Else $HOUR = @HOUR EndIf "text" & $hour & "more text" & @min what if @hour = 0 (24th hour) 8)
Richard Robertson Posted April 26, 2009 Posted April 26, 2009 what if @hour = 0 (24th hour)8)You seem to have misquoted me.
Valuater Posted April 26, 2009 Posted April 26, 2009 You seem to have misquoted me. Geeze... I guess your right... 8)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now