Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: how do i add a date to count down from instead of minutes or seconds? [QUOTE=waynespangler;685111]Try this: [CODE]Public Class Form1 Private CountDownTime As DateTime Private span As Integer = 1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If Button1.Text = "Start" Then CountDownTime = Now.AddMinutes(span) … |
The End.