📄 frmabout1.frm
字号:
VERSION 5.00
Begin VB.Form frmabout1
BackColor = &H80000013&
Caption = "关于系统介绍"
ClientHeight = 4950
ClientLeft = 60
ClientTop = 465
ClientWidth = 4575
ForeColor = &H00000000&
Icon = "frmabout1.frx":0000
LinkTopic = "Form15"
MaxButton = 0 'False
ScaleHeight = 4950
ScaleWidth = 4575
StartUpPosition = 2 '屏幕中心
Begin VB.Label Label9
BackStyle = 0 'Transparent
Caption = "开发环境"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 375
Left = 720
TabIndex = 8
Top = 1800
Visible = 0 'False
Width = 1215
End
Begin VB.Label Label8
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "退出"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 300
Left = 2040
TabIndex = 7
Top = 3120
Width = 600
End
Begin VB.Label Label7
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "操作简介"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 240
Left = 720
TabIndex = 6
Top = 1440
Visible = 0 'False
Width = 960
End
Begin VB.Label Label6
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "操作简介"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 300
Left = 360
TabIndex = 5
Top = 1080
Width = 1200
End
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "+"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 375
Left = 120
TabIndex = 4
Top = 1080
Width = 615
End
Begin VB.Label Label4
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "开发人员"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 240
Left = 720
TabIndex = 3
Top = 720
Visible = 0 'False
Width = 960
End
Begin VB.Label Label3
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "功能简介"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 240
Left = 720
TabIndex = 2
Top = 360
Visible = 0 'False
Width = 960
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "系统简介"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 300
Left = 360
TabIndex = 1
Top = 0
Width = 1200
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "+ "
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 375
Left = 120
TabIndex = 0
Top = 0
Width = 495
End
End
Attribute VB_Name = "frmabout1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Label1_Click()
Static i As Integer
i = i + 1
If i Mod 2 = 1 Then
Label1.Caption = "-"
Label3.Visible = True
Label4.Visible = True
ElseIf i Mod 2 = 0 Then
Label1.Caption = "+"
Label3.Visible = False
Label4.Visible = False
End If
End Sub
Private Sub Label2_Click()
Static i As Integer
i = i + 1
If i Mod 2 = 1 Then
Label1.Caption = "-"
Label3.Visible = True
Label4.Visible = True
ElseIf i Mod 2 = 0 Then
Label1.Caption = "+"
Label3.Visible = False
Label4.Visible = False
End If
End Sub
Private Sub Label3_Click()
frmabout2.Show
frmabout2.Caption = "功能简介"
frmabout2.Text1.Visible = True
frmabout2.Text2.Visible = False
frmabout2.Text3.Visible = False
frmabout2.Text4.Visible = False
End Sub
Private Sub Label4_Click()
frmabout2.Show
frmabout2.Text2.Visible = True
frmabout2.Text1.Visible = False
frmabout2.Text3.Visible = False
frmabout2.Text4.Visible = False
frmabout2.Caption = "开发人员"
End Sub
Private Sub Label5_Click()
Static i As Integer
i = i + 1
If i Mod 2 = 1 Then
Label5.Caption = "-"
Label7.Visible = True
ElseIf i Mod 2 = 0 Then
Label5.Caption = "+"
Label7.Visible = False
End If
End Sub
Private Sub Label6_Click()
Static i As Integer
i = i + 1
If i Mod 2 = 1 Then
Label5.Caption = "-"
Label7.Visible = True
Label9.Visible = True
ElseIf i Mod 2 = 0 Then
Label5.Caption = "+"
Label7.Visible = False
Label9.Visible = False
End If
End Sub
Private Sub Label7_Click()
frmabout2.Show
frmabout2.Text3.Visible = True
frmabout2.Text2.Visible = False
frmabout2.Text1.Visible = False
frmabout2.Text4.Visible = False
frmabout2.Caption = "操作简介"
End Sub
Private Sub Label8_Click()
Dim i As Integer
i = MsgBox("确认退出?", vbYesNo, "提示")
If i = vbYes Then
Unload Me
End If
End Sub
Private Sub Label9_Click()
frmabout2.Show
frmabout2.Text4.Visible = True
frmabout2.Text3.Visible = False
frmabout2.Text2.Visible = False
frmabout2.Text1.Visible = False
frmabout2.Caption = "操作环境"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -