Timer in vb.net
-
Hi, I have the following problems. 1. First, I want to subtract the current from the date of birth 2. Second , I want to check whether the current date is greater then the date of birth Please send me the functions that calculates it. Thank You Pankaj Garg
-
Hi, I have the following problems. 1. First, I want to subtract the current from the date of birth 2. Second , I want to check whether the current date is greater then the date of birth Please send me the functions that calculates it. Thank You Pankaj Garg
-
Hi, I have the following problems. 1. First, I want to subtract the current from the date of birth 2. Second , I want to check whether the current date is greater then the date of birth Please send me the functions that calculates it. Thank You Pankaj Garg
you can subtract dates by using this
Dim birthDay As Date = New Date(2006, 3, 17) Dim currentDate As Date = Now.Date Dim Difference As Double Difference = currentDate.ToOADate - birthDay.ToOADate
;)Regards,
Chatura Dilan
-
Hi, I have the following problems. 1. First, I want to subtract the current from the date of birth 2. Second , I want to check whether the current date is greater then the date of birth Please send me the functions that calculates it. Thank You Pankaj Garg