Wrathchild
Technical User
Hi, I'm testing my applications within Vista for the imminent conversion. I noticed "acCmdWindowUnhide" no longer works to unhide the db window under Vista.
What I currently have, doesn't work in Vista:
DoCmd.RunCommand acCmdWindowUnhide
I'm hiding it by setting the property StartupShowDBWindow to false.
I've googled around and haven't found much addressing this. I did try an alternative method, but this doesn't work under Vista either:
Public Sub HideDBWindow()
DoCmd.SelectObject acTable, , True
DoCmd.RunCommand acCmdWindowHide
End Sub
Public Sub ShowDBWindow()
DoCmd.SelectObject acTable, , True
End Sub
What I currently have, doesn't work in Vista:
DoCmd.RunCommand acCmdWindowUnhide
I'm hiding it by setting the property StartupShowDBWindow to false.
I've googled around and haven't found much addressing this. I did try an alternative method, but this doesn't work under Vista either:
Public Sub HideDBWindow()
DoCmd.SelectObject acTable, , True
DoCmd.RunCommand acCmdWindowHide
End Sub
Public Sub ShowDBWindow()
DoCmd.SelectObject acTable, , True
End Sub