Yes ,, You Can Do It
For Example
Dim StartingDate As Date = CDate(TextBox1.Text)
Dim EndingDate As Date = StartingDate.AddMonths(+1)
TextBox2.Text = EndingDate
[b]You can add days and years in the same way
For Example
Dim StartingDate As Date = CDate(TextBox1.Text)
Dim EndingDate As Date = StartingDate.AddMonths(+1)
TextBox2.Text = EndingDate
[b]You can add days and years in the same way

