Ola Amigo Castro;
Reativando o tópico, após efectuar varios testes no Windows Vista e no Windows 7, verifiquei que as API`s não liam a totalidade das instruções.
Se ainda quiser, teste por favor que funfa em todas as versões;
Cole no VBA do seu formulario após o Option Compare Database
Private Declare Function PostMessage Lib "user32" Alias "PostMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Private Const WM_CLOSE = &H10
Private Sub SeuBotão_Click()
Dim strFechaPasta, strFechaPasta1 As Long
Dim strEnviaComandoWindows, strEnviaComandoWindows1 As Long
strFechaPasta = FindWindow(vbNullString, "msg")
strFechaPasta1 = FindWindow(vbNullString, "Test")
If strFechaPasta <> 0 Or strFechaPasta1 <> 0 Then
strEnviaComandoWindows = PostMessage(strFechaPasta, WM_CLOSE, 0&, 0&)
strEnviaComandoWindows1 = PostMessage(strFechaPasta1, WM_CLOSE, 0&, 0&)
Else
MsgBox "Essa Pasta não está aberta.", vbCritical
End If
End Sub