Ⅰ vb 關機代碼
這個太簡單了
Shell ("shutdown -f -s -t 0")
你可試試,保證按扭按下立即關機
Ⅱ VB中實現電腦關機和重啟的代碼分別是什麼
private sub command1_click() '注銷
shell "shutdown -f -l -t 0",vbhide
end sub
private sub command2_click() '關閉
shell "shutdown -f -s -t 0",vbhide
end sub
private sub command3_click() '重啟
shell "shutdown -f -r -t 0",vbhide
end sub