?? 啟動控制面板大全.frm
字號:
VERSION 5.00
Begin VB.Form Form1
Caption = "啟動控制面板大全"
ClientHeight = 3855
ClientLeft = 60
ClientTop = 345
ClientWidth = 5505
LinkTopic = "Form1"
ScaleHeight = 3855
ScaleWidth = 5505
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "打開 IE 的設置窗口"
Height = 465
Index = 12
Left = 3720
TabIndex = 13
Top = 1680
Width = 1320
End
Begin VB.CommandButton Command1
Caption = "打開撥號連接"
Height = 465
Index = 11
Left = 3720
TabIndex = 12
Top = 1080
Width = 1320
End
Begin VB.CommandButton Command1
Caption = "啟動日期和時間設置"
Height = 480
Index = 10
Left = 3720
TabIndex = 10
Top = 2280
Width = 1320
End
Begin VB.CommandButton Command1
Caption = "設置"
Height = 420
Index = 9
Left = 1920
TabIndex = 9
Top = 2520
Width = 1320
End
Begin VB.CommandButton Command1
Caption = "屏幕保護"
Height = 420
Index = 8
Left = 1920
TabIndex = 8
Top = 2040
Width = 1320
End
Begin VB.CommandButton Command1
Caption = "外觀"
Height = 420
Index = 7
Left = 1920
TabIndex = 7
Top = 1560
Width = 1320
End
Begin VB.CommandButton Command1
Caption = "背景"
Height = 420
Index = 6
Left = 1920
TabIndex = 6
Top = 1080
Width = 1320
End
Begin VB.CommandButton Command1
Caption = "聲音"
Height = 420
Index = 5
Left = 180
TabIndex = 5
Top = 2970
Width = 1320
End
Begin VB.CommandButton Command1
Caption = "鼠標"
Height = 420
Index = 4
Left = 180
TabIndex = 4
Top = 2520
Width = 1320
End
Begin VB.CommandButton Command1
Caption = "鍵盤"
Height = 420
Index = 3
Left = 180
TabIndex = 3
Top = 2025
Width = 1320
End
Begin VB.CommandButton Command1
Caption = "顯示"
Height = 420
Index = 2
Left = 180
TabIndex = 2
Top = 1575
Width = 1320
End
Begin VB.CommandButton Command1
Caption = "輔助選項"
Height = 420
Index = 1
Left = 180
TabIndex = 1
Top = 1080
Width = 1320
End
Begin VB.CommandButton Command1
Caption = "啟動控制面板"
Height = 420
Index = 0
Left = 225
TabIndex = 0
Top = 360
Width = 1320
End
Begin VB.Shape Shape3
Height = 3255
Left = 3600
Top = 240
Width = 1695
End
Begin VB.Shape Shape2
Height = 3255
Left = 1800
Top = 240
Width = 1695
End
Begin VB.Shape Shape1
Height = 3255
Left = 120
Top = 240
Width = 1455
End
Begin VB.Label Label2
Caption = "啟動顯示設置面板"
Height = 240
Left = 2040
TabIndex = 11
Top = 360
Width = 1635
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click(Index As Integer)
Dim x
Select Case Index
Case 0
'啟動控制面板:
x = Shell("rundll32.exe shell32.dll,Control_RunDLL")
Case 1
'啟動輔助選項面板:
'常規:
x = Shell("rundll32.exe shell32.dll,Control_RunDLL access.cpl,,5")
Case 2
'顯示:
x = Shell("rundll32.exe shell32.dll,Control_RunDLL access.cpl,,3")
Case 3
'鍵盤:
x = Shell("rundll32.exe shell32.dll,Control_RunDLL access.cpl,,1")
Case 4
'鼠標:
x = Shell("rundll32.exe shell32.dll,Control_RunDLL access.cpl,,4")
Case 5
'聲音:
x = Shell("rundll32.exe shell32.dll,Control_RunDLL access.cpl,,2")
Case 6
'啟動顯示設置面板:
'背景:
x = Shell("rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,0")
Case 7
'外觀:
x = Shell("rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,2")
Case 8
'屏幕保護:
x = Shell("rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,1")
Case 9
'設置:
x = Shell("rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,3")
Case 10
'啟動日期和時間設置:
x = Shell("rundll32.exe shell32.dll,Control_RunDLL timedate.cpl")
Case 11
'打開撥號連接:
x = Shell("rundll32.exe rnaui.dll,RnaDial " & "連接_名稱", 1)
Case 12
'打開 IE4 的設置窗口:
x = Shell("rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl")
End Select
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -