Refreshing a form

  • Thread starter Thread starter Ana
  • Start date Start date
A

Ana

Hello,
I have a form which displays a number of open claims. I would like this
number to refresh every...say 1 minute.
Now, I'm doing it manually by a refresh command.
Howto do it?
TIA
Ana
BTW...Great newsgroup!!!
 
Forms have a built-in timer control.

In the Load event of the form, set the TimerInterval property to 60000 (a
value of 1000 represents 1 second)

Sub Form_Load()
Me.TimerInterval = 60000
End Sub

Then, add code in the form's Timer event to refresh the form:

Sub Form_Timer()
Me.Refresh
End Sub
 

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

Similar Threads

Access Form Refresh 1
Refresh a form 3
Form with Subform not Refreshing 1
Refreshing a query 1
Refresh Form 1
Refresh field on Form 2
Best way to refresh form data 1
Auto Refresh queries in Forms 7

Back
Top