[Solved] Add 10 months automatically to textbox2 based on user selected date in textbox1 [closed]
[ad_1] try this DateTime add_Months = Convert.ToDateTime(textbox1.Text).AddMonths(10); textbox2.Text = add_Months.ToString(); [ad_2] solved Add 10 months automatically to textbox2 based on user selected date in textbox1 [closed]