Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

acCmdWindowUnhide not working in Vista 1

Status
Not open for further replies.

Wrathchild

Technical User
Aug 24, 2001
303
US
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
 
Nevermind, it was a Runtime vs. Full blown Access rather than a W2000 vs. Vista issue. No way to delete a post??
 

Actually, a problem was stated and a solution found; it should remain here for people with a similar problem who may come
searching for an answer.

The Missinglinq

Richmond, Virginia

There's ALWAYS more than one way to skin a cat!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top