Depending on the OS, you could use the MMC plug-in, Group Policy Editor (gpedit.msc).
One option is the ability to assign programs to run at startup or shutdown. This can be done for the user or the machine.
Steve
I think that your timer is updating faster than your updates. With each cycle of the timer, it is refreshing the label unneccesarily. Only update the label when you need too.
Try the following:
Private Sub gametime_Timer()
Dim hour1 As String, min1 As String, sec1 As String
sec = sec + 1...
A basic example of traversing through a recordset object with multiple recordsets looks like this:
Do While Not (recordset Is Nothing)
Do While Not (recordset.EOF)
<<Perform actions with the current recordset>>
recordset.MoveNext
Loop
' Move to next recordset...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.