Hi All,
Im currently using the blow to show hide the shutter bar (object viewer pane on the left). However I've just realised that if the user pushes F11 the sutter opens opens if hidden. How can I ensure that at runtime the shutter bar isn't available, at all, no matter what, zilch access to viewing objects, never ever.
If Me.CmdHidePane.Caption = "Hide Pane" Then
'hide
Me.CmdHidePane.Caption = "Show Pane"
DoCmd.SelectObject acForm, , True
RunCommand acCmdWindowHide
Else
'show
Me.CmdHidePane.Caption = "Hide Pane"
DoCmd.SelectObject acForm, , True
End If
Many thanks
SmallTime
Im currently using the blow to show hide the shutter bar (object viewer pane on the left). However I've just realised that if the user pushes F11 the sutter opens opens if hidden. How can I ensure that at runtime the shutter bar isn't available, at all, no matter what, zilch access to viewing objects, never ever.
If Me.CmdHidePane.Caption = "Hide Pane" Then
'hide
Me.CmdHidePane.Caption = "Show Pane"
DoCmd.SelectObject acForm, , True
RunCommand acCmdWindowHide
Else
'show
Me.CmdHidePane.Caption = "Hide Pane"
DoCmd.SelectObject acForm, , True
End If
Many thanks
SmallTime