R robb Guest Nov 30, 2005 #1 Hi, I wish to open a folder/directory (not a file) using the onclick event of a cmdButton. Any ideas out there? Robb
Hi, I wish to open a folder/directory (not a file) using the onclick event of a cmdButton. Any ideas out there? Robb
ghudson Registered User. Local time Today, 11:04 Joined Jun 8, 2002 Messages 6,194 Nov 30, 2005 #2 Open or browse? Browse [Find a directory or file] This will open a new session of Windows Explorer to the C:Windows\Temp\ folder... Code: Call Shell("C:\Windows\Explorer.exe C:\Windows\Temp", vbMaximizedFocus) Searching the forum is a great way to discover and learn the answers to your Access programming questions.
Open or browse? Browse [Find a directory or file] This will open a new session of Windows Explorer to the C:Windows\Temp\ folder... Code: Call Shell("C:\Windows\Explorer.exe C:\Windows\Temp", vbMaximizedFocus) Searching the forum is a great way to discover and learn the answers to your Access programming questions.