G
Gordon Clark
Thanks for your time, first off!
Situation is this: A 2002 database in place for years with a stock
Switchboard - no tweaks, nothing out of the ordinary. Compiled FE works fine
for 2002 runtime and full version.
A User moved to 2007 and the client is not filtering as expected. When User
loads into the uncompiled FE they are able to click "Toggle Filter" on the
ribbon and the SW works fine. (Of course, the TF button is unavailable in the
compiled FE - and this should not be necessary anyway.)
Obligatory code insert:
Private Sub Form_Open(Cancel As Integer)
' Minimize the database window and initialize the form.
' Move to the switchboard page that is marked as the default.
Me.Filter = "[ItemNumber] = 0 AND [Argument] = 'Default' "
Me.FilterOn = True
DoCmd.Maximize
End Sub
I've read of hiccups with VBA toggling - but would expect Microsoft's code
to work in a MS application - which leads me to believe there may be
something above the Form level that I've done that is disabling normal
operation. (The DB opens to the Switchboard, and the Navi bar or database
window are not shown - yet it won't move past the first SW.)
Thoughts?
Situation is this: A 2002 database in place for years with a stock
Switchboard - no tweaks, nothing out of the ordinary. Compiled FE works fine
for 2002 runtime and full version.
A User moved to 2007 and the client is not filtering as expected. When User
loads into the uncompiled FE they are able to click "Toggle Filter" on the
ribbon and the SW works fine. (Of course, the TF button is unavailable in the
compiled FE - and this should not be necessary anyway.)
Obligatory code insert:
Private Sub Form_Open(Cancel As Integer)
' Minimize the database window and initialize the form.
' Move to the switchboard page that is marked as the default.
Me.Filter = "[ItemNumber] = 0 AND [Argument] = 'Default' "
Me.FilterOn = True
DoCmd.Maximize
End Sub
I've read of hiccups with VBA toggling - but would expect Microsoft's code
to work in a MS application - which leads me to believe there may be
something above the Form level that I've done that is disabling normal
operation. (The DB opens to the Switchboard, and the Navi bar or database
window are not shown - yet it won't move past the first SW.)
Thoughts?