📄 discrib.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "Discribe Your System"
ClientHeight = 4395
ClientLeft = 915
ClientTop = 1410
ClientWidth = 5775
LinkTopic = "Form1"
PaletteMode = 1 'UseZOrder
ScaleHeight = 4395
ScaleWidth = 5775
Begin VB.PictureBox Picture4
AutoSize = -1 'True
BorderStyle = 0 'None
Height = 480
Left = 3720
Picture = "discrib.frx":0000
ScaleHeight = 480
ScaleWidth = 480
TabIndex = 9
Top = 3000
Visible = 0 'False
Width = 480
End
Begin VB.PictureBox Picture3
AutoSize = -1 'True
BorderStyle = 0 'None
Height = 480
Left = 3720
Picture = "discrib.frx":0442
ScaleHeight = 480
ScaleWidth = 480
TabIndex = 8
Top = 2280
Visible = 0 'False
Width = 480
End
Begin VB.PictureBox Picture2
AutoSize = -1 'True
BorderStyle = 0 'None
Height = 480
Left = 3720
Picture = "discrib.frx":0884
ScaleHeight = 480
ScaleWidth = 480
TabIndex = 7
Top = 1560
Visible = 0 'False
Width = 480
End
Begin VB.PictureBox Picture1
AutoSize = -1 'True
BorderStyle = 0 'None
Height = 480
Left = 3720
Picture = "discrib.frx":0CC6
ScaleHeight = 480
ScaleWidth = 480
TabIndex = 6
Top = 960
Visible = 0 'False
Width = 480
End
Begin VB.CheckBox Check4
Caption = "电子邮件"
Enabled = 0 'False
Height = 372
Left = 600
TabIndex = 5
Top = 3120
Width = 2052
End
Begin VB.CheckBox Check3
Caption = "密码保护"
Height = 372
Left = 600
TabIndex = 4
Top = 2400
Width = 2052
End
Begin VB.CheckBox Check2
Caption = "鼠标"
Height = 372
Left = 600
TabIndex = 3
Top = 1680
Width = 1932
End
Begin VB.CheckBox Check1
Caption = "网络系统"
Height = 372
Left = 600
TabIndex = 2
Top = 1080
Width = 1932
End
Begin VB.Frame Frame2
Caption = "这是你的计算机系统"
Height = 3255
Left = 3000
TabIndex = 1
Top = 480
Width = 2652
End
Begin VB.Frame Frame1
Caption = "选择你的计算机拥有的配置"
Height = 3255
Left = 360
TabIndex = 0
Top = 480
Width = 2412
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Check1_Click()
If Check1.Value Then
Check4.Enabled = -1
Picture1.Visible = -1
Else: Check4.Enabled = 0
Picture1.Visible = 0
Check4.Value = 0
Picture4.Visible = 0
End If
End Sub
Private Sub Check2_Click()
If Check2.Value Then
Picture2.Visible = -1
Else: Picture2.Visible = 0
End If
End Sub
Private Sub Check3_Click()
If Check3.Value Then
Picture3.Visible = -1
Else: Picture3.Visible = 0
End If
End Sub
Private Sub Check4_Click()
If Check4.Value Then
Picture4.Visible = -1
Else: Picture4.Visible = 0
End If
End Sub
Private Sub Form_Load()
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -