Hi, I have taken two textboxes, 1 shows the current time i.e system time, while in other textbox, I want to show five minutes added to the system time. How to do that?
Code:
Private Sub Arrival_timeTextBox_TextChanged(sender As Object, e As EventArgs) Handles Arrival_timeTextBox.TextChanged Arrival_timeTextBox.Text = DateTime.Now.ToLongTimeString() End Sub Private Sub DepartureTextBox_TextChanged(sender As Object, e As EventArgs) Handles DepartureTextBox.TextChanged ?? End Sub End Class
Comment