There was a question a while back about how to open the Windows Calculator from a button:
Private Sub Command0_Click()
Shell ("calc.exe")
End Sub
The above code works great. Now, how can I get the calculator to close when the form closes? Any suggestion would be appreciated.
Private Sub Command0_Click()
Shell ("calc.exe")
End Sub
The above code works great. Now, how can I get the calculator to close when the form closes? Any suggestion would be appreciated.