I have placed a commend button on a form to open an external exe.
How can i unload main form when an external exe. is executed
Code:
Private Sub Command1_Click()
Shell App.Path & "\my.exe", vbNormalFocus
End Sub