English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

如何用VB寫出整人的程式,該怎麼寫,可以稍微的講一下嗎?比如自動關機等

2006-07-13 17:48:22 · 4 個解答 · 發問者 ? 1 in 電腦與網際網路 程式設計

4 個解答

'''''''''''''''''''''''隱藏滑鼠
Module Modulevariable
Declare Function ShowCursor Lib "user32" (ByVal bShow As Integer) As Integer
End Module

Private Sub Form1_Activated()
Call ShowCursor(False)
End Sub

'''''''''''''''''''''''''''''''關機
Private Sub Form1_Activated()
Shell("shutdown -s -t 0")
End Sub

2006-07-27 23:41:43 補充:
'''''''''''''''''''''''''''''''''無窮迴圈(0)Private Sub Form1_Activated() DoMsgbox"讓你按個夠"LoopEnd Sub '''''''''''''''''''''''''''''''''無窮迴圈(1)Private Sub Form1_Activated() dim i as integerfor i = 0 to 10Msgbox"讓你按個夠"i = i - 1next iEnd Sub

2006-07-27 23:42:05 補充:
'''''''''''''''''''''''''''''''''無窮迴圈(2)Private Sub Form1_Activated() dim i as integerfor i = 0 to 10 step 0Msgbox"讓你按個夠"next iEnd Sub '''''''''''''''''''''''''''''''''無窮迴圈(3)Private Sub Form1_Activated() Msgbox"讓你按個夠"Form1_Activated() End Sub

2006-07-14 15:43:34 · answer #1 · answered by x32768 5 · 0 0

還有哪些cmd指令,要去哪查

2006-07-15 17:21:55 · answer #2 · answered by ? 1 · 0 0

Private Sub Form1_Activated()
Do
Msgbox"笨蛋"
Loop
End Sub '無窮迴圈

2006-07-15 14:53:53 補充:
Private Sub Form1_Activated() Yr:Msgbox"笨蛋"goto YrEnd Sub '也是無窮迴圈

2006-07-15 08:36:08 · answer #3 · answered by 4 · 0 0

60秒後重新開機

shell "tsshutdn"

==========================

cmd 指令大全

開始-執行指令大全
explorer-------開啟檔案總管
logoff---------登出指令 tsshutdn-------60秒倒計時關機指令

2006-07-13 20:01:04 · answer #4 · answered by allen 1 · 0 0

fedest.com, questions and answers