Refresh and Stuff

R

Ripper

This is a 2 question post.

1. Is there a way to have Access start and then only show the form that is
open and no toolbars, no Access GUI or anything?

2. How could I set a timer to refresh a form, frmMain, every 60 seconds?
 
A

Arvin Meyer

Ripper said:
This is a 2 question post.

1. Is there a way to have Access start and then only show the form that is
open and no toolbars, no Access GUI or anything?
http://www.mvps.org/access/api/api0019.htm

2. How could I set a timer to refresh a form, frmMain, every 60 seconds?

Set the TimerInterval property to: 60000

(60*1000 milliseconds) Write code in the Timer event to refresh or requery
the form:

Me.Refresh

or

Me.Requery
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 
Top