Displaying 1 result from an estimated 1 matches for "tbdn".
Did you mean:
tbd
2012 Nov 12
1
problem with Erlang function
...e
? Name
? Date of birth.
The program will calculate age and display output
first
I do know the system date (month, day, year)
I find with Sys.Date ()
I found a function. net to calculate the age
Protected Sub calcul_age()
Dim datetimenow = DateTime.Now
Dim datedenaissance = CDate(TbDn.Text)
Dim age As Integer
age = CInt(Now.Year - datedenaissance.Year)
If (datedenaissance.Month > Now.Month) Then
age = age - 1
End If
If ((datedenaissance.Month = Now.Month) And (datedenaissance.Day >
Now.Day)) Then
age = age - 1
End If
Me.Label3.Text = &qu...