C
Chad
Hello, Im having trouble figuring out what I need to do to have
"Me.LoggedOn.RowSource = WhosOn()" run every minutet or so. Im already using
the Timer Event for a progress bar that keeps running to show that its always
looking for new users. Could I possible put something in the forms current
event to run the "Me.LoggedOn.RowSource = WhosOn()" about every few minutes?
Would something like this work? Thanks!
Private Sub Form_Current()
If Me.TimerInterval = 1000 Then
Me.LoggedOn.RowSource = WhosOn()
End If
End Sub
"Me.LoggedOn.RowSource = WhosOn()" run every minutet or so. Im already using
the Timer Event for a progress bar that keeps running to show that its always
looking for new users. Could I possible put something in the forms current
event to run the "Me.LoggedOn.RowSource = WhosOn()" about every few minutes?
Would something like this work? Thanks!
Private Sub Form_Current()
If Me.TimerInterval = 1000 Then
Me.LoggedOn.RowSource = WhosOn()
End If
End Sub