Click here to Skip to main content
15,891,253 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi I am develeoping a Win Applicaion by using C# and SQL Server 2005. In a form I used three comboBoxes for DOB "ddBox, mmBox, yyyyBox" and a textBox1. My query is when the user will enter his DOB in "ddBox, mmBox, yyyyBox" his Date of Retirement should be automatically shown in textBox1 by adding 60 years with his DOB.
As for example:- " DOB + 60 years = Date of Retirement "
I don't have written any code fot this. Don't have idea. Please someone help me.Thanks
Posted
Updated 1-Feb-13 20:03pm
v2

Go with this[^]
 
Share this answer
 
I dont understand why you choose three combobox to accept the date of birth, instead use DateTimePicker to accept the date of birth and use its Value [^]property to accept the user selected date.

And add your year to the selected date using DateTime.AddYears[^].
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900