You must use an API call. Here is a code example:
Code:
Private Const SWP_SHOWWINDOW = &H40
Private Declare Function _
FindWindow Lib "user32" Alias "FindWindowA" _
(ByVal lpClassName As String, _
ByVal lpWindowName As String) As Long
Private Declare Function _
ShowWindow Lib "user32" _
(ByVal hwnd As Long, _
ByVal nCmdShow As Long) As Long
Private sub LooseFocus()
AppHandle As Long
AppHandle= FindWindow(vbNullString, "Calculator")
ShowWindow AppHandle, SW_SHOWNORMAL
End Sub