Alexandre Rosa Posted March 20, 2022 at 08:23 PM Report Share #625590 Posted March 20, 2022 at 08:23 PM Boa tarde malta. Eu estou a criar uma aplicação que basicamente seleciono a data e uma hora e uma data nos seus respetivos datetimepickers, aparecendo assim o tempo que falta . Eu fiz o cálculo só que quando eu abro a aplicação e seleciono a hora e a data, aparece o tempo que falta só que não faz a contagem decrescente. datetimepicker1 - hora datetimepicker7 - data Aqui está o respetivo código: private void timer1_Tick(object sender, EventArgs e) { DateTime date1 = new System.DateTime(dateTimePicker1.Value.Ticks); DateTime date2 = new System.DateTime(dateTimePicker7.Value.Ticks); TimeSpan resultado = dateTimePicker1.Value - dateTimePicker7.Value; label1.Text = resultado.ToString(@"dd\:hh\:mm\:ss"); timer1.Start(); } Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now