i have activereport 6 and C# and i try to add 6 days to textbox1 value/text this is what i try
string text1 = this.textbox1.Text;
i also try
string text1 = this.textbox1.Text.ToString();
or string text1 = this.textbox1.Value
convert string to time
DateTime date1 = Datime.Parse(text1);
i keep getting error "target of invocation" how do i convert textbox data string to datetime? or how do i fix that target of invocation error?