PowerBuilder Function Is Valid Time f_is_valid_time
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
///////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Function Name : f_is_valid_time // Argument Name : atm_source, Arg Type : Time, Pass By : Value // Return Type : Boolean /////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Description: Given a time, will determine if the time is valid. /////////////////////////////////////////////////////////////////////////////////////////////////////////////// Integer li_hour Integer li_minute Integer li_second // Initialize test values. li_hour = Hour(atm_source) li_minute = Minute(atm_source) li_second = Second(atm_source) // Check for nulls. If IsNull(atm_source) Or IsNull(li_hour) Or IsNull(li_minute) Or IsNull(li_second) Then Return False End If // Check for invalid values. If li_hour < 0 Or li_minute < 0 Or li_second < 0 Then Return False End If // Passed all testing. Return True |
Good Luck!
Subscribe
Login
0 Comments
Oldest