3
Answers

How to generate end date in datetime picker automatically

Pavithra L

Pavithra L

9y
462
1
Hai,
 
Here am using c# windows application , in this project I want to calculate the end date.
Here am using textbox for enter the total number of months and one datetimepicker for start date  after I fill these details the second datetime picker will show the exact date based on the textbox value and datetimepicker1.
 
How can I do this in my project.
 
For an example:
 
Textbox1: 11 ( manual entry)
 
DatetimePicker1: 16-11-2015(manual entry)
 
DatetimePicker2:16-10-2016 (system generate)
 
Please anybody help this question, it is urgent now . 
Answers (3)
0
Ranjit Powar

Ranjit Powar

NA 8.1k 496.6k 9y
try this
 
DateTime dt = dateTimePicker1.Value;
dateTimePicker2.Value = dt.AddMonths(Convert.ToInt32(textBox1.Text));
 
 
 
 
Accepted
0
Pavithra L

Pavithra L

NA 336 23.6k 9y
Hai Ranjith,
 
Thank  you for your reply , I got my answer... 
0
Srikanth Reddy

Srikanth Reddy

NA 237 8.4k 9y
Hi Pavithra 
 
 
Try  this code in  dateTimePicker_Changed event 
 
int val =Convert.ToInt16(textBox1.Text);

string theDate =this.dateTimePicker1.Value.ToString("yyyyMMdd");

DateTime dt = DateTime.ParseExact(theDate, "yyyyMMdd", CultureInfo.InvariantCulture);
dt = dt.AddMonths(val);
textBox2.Text = dt.ToString();