PowerBuilder Function Is Valid Date f_is_valid_date
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_date // Argument Name : ad_source, Arg Type : Date, Pass By : Value // Return Type : Boolean /////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Description: Given a date, will determine if the Date is valid. /////////////////////////////////////////////////////////////////////////////////////////////////////////////// Integer li_year Integer li_month Integer li_day // Initialize test values. li_year = Year(ad_source) li_month = Month(ad_source) li_day = Day(ad_source) // Check for nulls. If IsNull(ad_source) Or IsNull(li_year) Or IsNull(li_month) Or IsNull(li_day) Then Return False End If // Check for invalid values. If li_year <= 0 Or li_month <= 0 Or li_day <= 0 Then Return False End If // Passed all testing. Return True |
Good Luck!
Subscribe
Login
0 Comments
Oldest