SyntaxFix
Write A Post
Hire A Developer
Questions
try
total.Text = DateTime.Now.ToString()
or
Dim theDate As DateTime = System.DateTime.Now total.Text = theDate.ToString()
You declare Start as an Integer, while you are trying to put a DateTime in it, which is not possible.
Start
Integer
DateTime