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
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