Update
Situation:
I'm trying to make an application that shutdown my laptop using a simple button but when I press the button the shutdown still has to work.
Question:
Is this possible to do? And how do I have to do it? Or is this an automatic process?
Code:
I think the code should look like this:
Private sub
Button1_click(ByVal...)
Shell("shutdown /s")
End sub
Can someone please give me feedback if I used it correct?
Thank You