help please..internet cafe timer that will decrease time in vb.net
help please..help me in my timer like the time they use in computer shop and when the player is already time out it will alert...the idea like this if the player start 3:00:00 then it will appear in the textbox for the time - in and in the time - out textbox the time is decreasing until 0:05:00 and it will alert using message.box.Show("Computer 2 is 5 mins before time end") and also for the payment textbox in every 15 mins it will addition payment for example 10.00....i need the source code or idea to create this..thank you...
arjen
Junior Poster in Training
55 posts since Jul 2006
Reputation Points: 10
Solved Threads: 0
codeorder
Posting Virtuoso
1,913 posts since Aug 2010
Reputation Points: 255
Solved Threads: 384
arjen
Junior Poster in Training
55 posts since Jul 2006
Reputation Points: 10
Solved Threads: 0
i have a question codeorder..is it possible to make the time running in datagridview or listview..??
arjen
Junior Poster in Training
55 posts since Jul 2006
Reputation Points: 10
Solved Threads: 0
i have a question codeorder..is it possible to make the time running in datagridview or listview..?? because i'm planning to make like you see the customer name|cost|time start| remaining time| just like that i want it to make in datagridview is it possible that u can view the time running in datagridview or listview??
arjen
Junior Poster in Training
55 posts since Jul 2006
Reputation Points: 10
Solved Threads: 0
Quite possible.
I will send you a private message on how to get started since it could get a little more complicated than just having one timer and we do not want to send forum threads off-topic.:)
codeorder
Posting Virtuoso
1,913 posts since Aug 2010
Reputation Points: 255
Solved Threads: 384
civosi1028, next time create your own thread.
Otherwise, see if this helps.
Add 1 Timer, 1 Label, and 1 Button from the Toolbox.
Public Class Form1
Private myCoolHours, myCoolMinutes, myCoolSeconds As Integer
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
If myCoolMinutes = 15 Then
Timer1.Stop()
MsgBox("tada")
Exit Sub
End If
If myCoolSeconds = 60 Then
myCoolSeconds = -1
myCoolMinutes += 1
End If
myCoolSeconds += 1
Label1.Text = CInt(myCoolHours).ToString("00") & ":" & CInt(myCoolMinutes).ToString("00") & ":" & CInt(myCoolSeconds).ToString("00")
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
With Timer1
.Enabled = Not .Enabled '// toggle On/Off.
End With
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Timer1.Interval = 1000 '// 1 second delay.
End Sub
End Class
codeorder
Posting Virtuoso
1,913 posts since Aug 2010
Reputation Points: 255
Solved Threads: 384