VBA: Can you open Windows Explorer from VBA?
========= QUESTION --------- Can I open Windows Explorer from my VBA code? ========= ANSWER --------- See EXAMPLES ========= EXAMPLES --------- Private Sub WindowsExplorer_Click() Dim rst As RecordsetDim retval As String Set rst = CurrentDb.OpenRecordset("Parms")retval = Shell("explorer.exe " & rst!Path, vbNormalFocus)Set rst = NothingEnd Sub ========= APPLIES TO / KEY WORDS --------- Microsoft [...]