I have this code
Dim replace As String = System.DateTime.Now.AddDays(7).ToString("yyyy-MM-dd")
What I'm trying to do is
Dim replace As String = textbox1.text.AddDays(7).ToString("yyyy-MM-dd")
is there a way to use that add days from a text or string value already?