Simple Timer

M

May

under form properties, put 500 in "Time Interval" then key
in the following code in on timer event

Private Sub Form_Timer()
Static tem As String
If tem = "skip" Then
Line0.BorderColor = 8454143
tem = "noskip"
Else
Line0.BorderColor = 255
tem = "skip"
End If
End Sub

May
MCP in Access and SQL Server
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top