I have a form "frmMenu" which contains a sub datasheet form called "frmDashBoard". This form opens Maximized. I have added the following code to re-query that sub data sheet as it is a live update screen.
Private Sub Form_Load()
Me.TimerInterval = 1
End Sub
Private Sub Form_Timer()
Forms![frmMenu].frmDashBoard.Form.Requery
End Sub
I have disabled this forms minimize. And I am trying to add a button to minimize all of access. And when its restored to restore "frmMenu" in maximize with the requery function also running. I have tried a few code options but can't seem to get what I am trying to achieve. Would appreciate some help on how I could get this done.
Private Sub Form_Load()
Me.TimerInterval = 1
End Sub
Private Sub Form_Timer()
Forms![frmMenu].frmDashBoard.Form.Requery
End Sub
I have disabled this forms minimize. And I am trying to add a button to minimize all of access. And when its restored to restore "frmMenu" in maximize with the requery function also running. I have tried a few code options but can't seem to get what I am trying to achieve. Would appreciate some help on how I could get this done.