The following code opens up an external VB.NET app. How do I close the same application with VBA code? Do I use the Shell command again or do I use some kind of system process?
Dim CommandLine As String
CommandLine = "C:\DocMan\Welcome.exe"
Call Shell(CommandLine, 1)
Steve728
Dim CommandLine As String
CommandLine = "C:\DocMan\Welcome.exe"
Call Shell(CommandLine, 1)
Steve728