Sub Form Update?

  • Thread starter Robert B via AccessMonster.com
  • Start date
R

Robert B via AccessMonster.com

I have a multiple user FE/BE database.
Depending department determins which FE they have.

One Departments FE has a main page with there own buttons ECT and, a SUBform
linked to a table displaying missing items that another department has
entered into the database.

Most departments leave the FE open as the day goes on and simply select which
task they wish to perform from the relevant FE. The problem is that my
SUBform only updates as the page is loaded.

is there any way i can get the page to self reload/ update say every hour?

Cheers for any advice
 
R

Ron Weiner

Robert

You could use the Timer on the Sub Form to trigger a requery every n
minutes. If you wanted to refresh the form every 10 minutes you'd set the
Forms Timer Interval Property to 600000 and in the Forms Timer even you
would requery the form. Code might look like this:

Private Sub Form_Timer()
Me.Requery
End Sub

Ron W
www.WorksRite.com
 

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


Top