F
Francesco
Is it possible from a VBA program to automatically shut down the computer at
the end of program execution?
Thanks
Francesco
the end of program execution?
Thanks
Francesco
Use Shell and the SHUTDOWN commandline tools.Is it possible from a VBA program to automatically shut down the computer at
the end of program execution?
Use Shell and the SHUTDOWN commandline tools.Is it possible from a VBA program to automatically shut down the
computer at the end of program execution?
Stefan Hoffmann said:hi Franceso,
Use Shell and the SHUTDOWN commandline tools.
Public Sub ShutDown()
On Local Error GoTo LocalError
Shell "SHUTDOWN -s"
End Sub
mfG
--> stefan <--