Hi guys
Is it possible to have a form that appears at start up unless a parameter is set to true, in my case a tick box on the form.
The form is a notice of changes that have been made the problem with this being that people only need to read it once and I cant remove it because about 800 users will have separate copies of the front end on there pc’s.
My current train of thought is that I have a small table on the front end with a yes/no field which is linked to a tick box in the form. When the box is ticked to say that the user no longer wishes to see this on start up the form either no longer opens or starts as hidden.
The code for this I imagine is very simple I've been messing in the OnLoad part of the form.
Private Sub Form_Load()
If ([TickBox] = True) Then
activewindow.Visible = False
End If
End Sub
I did have it working with DoCmd.Close in the OnTimer but I constantly had the form flickering on the screen.
Hopefully there is a better way!?
Thanks in advance,
Is it possible to have a form that appears at start up unless a parameter is set to true, in my case a tick box on the form.
The form is a notice of changes that have been made the problem with this being that people only need to read it once and I cant remove it because about 800 users will have separate copies of the front end on there pc’s.
My current train of thought is that I have a small table on the front end with a yes/no field which is linked to a tick box in the form. When the box is ticked to say that the user no longer wishes to see this on start up the form either no longer opens or starts as hidden.
The code for this I imagine is very simple I've been messing in the OnLoad part of the form.
Private Sub Form_Load()
If ([TickBox] = True) Then
activewindow.Visible = False
End If
End Sub
I did have it working with DoCmd.Close in the OnTimer but I constantly had the form flickering on the screen.
Hopefully there is a better way!?
Thanks in advance,