[Solved] Add 10 months automatically to textbox2 based on user selected date in textbox1 [closed]


try this

DateTime add_Months = Convert.ToDateTime(textbox1.Text).AddMonths(10);
textbox2.Text = add_Months.ToString();

solved Add 10 months automatically to textbox2 based on user selected date in textbox1 [closed]