📄 frmhelp.frm
字号:
VERSION 5.00
Begin VB.Form frmhelp
BorderStyle = 1 'Fixed Single
Caption = "关于"
ClientHeight = 5475
ClientLeft = 3885
ClientTop = 2805
ClientWidth = 7215
ControlBox = 0 'False
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "frmhelp.frx":0000
ScaleHeight = 5475
ScaleWidth = 7215
Begin VB.Timer Timer2
Interval = 1
Left = 2520
Top = 2640
End
Begin VB.Timer Timer1
Interval = 300
Left = 600
Top = 3600
End
Begin VB.PictureBox Picture1
Height = 1575
Left = 240
ScaleHeight = 1515
ScaleWidth = 6435
TabIndex = 3
Top = 3120
Width = 6495
Begin VB.Label Label4
Caption = "祝江西省第十六届电子电脑科技活动圆满成功!"
ForeColor = &H000000FF&
Height = 495
Left = 1080
TabIndex = 6
Top = 480
Width = 4575
End
End
Begin VB.CommandButton Command1
BackColor = &H0080FF80&
Caption = "&Close"
Height = 375
Left = 2880
Style = 1 'Graphical
TabIndex = 1
Top = 4920
Width = 1095
End
Begin VB.Label Label6
Caption = "现在时间是:"
ForeColor = &H000000FF&
Height = 495
Left = 3480
TabIndex = 5
Top = 2280
Width = 1095
End
Begin VB.Label Label5
ForeColor = &H000000FF&
Height = 495
Left = 4680
TabIndex = 4
Top = 2280
Width = 1695
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "开发工具:Microsoft Visual Basic 6.0 与 SQL sever 2000 "
Height = 375
Left = 3480
TabIndex = 2
Top = 1440
Width = 3615
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "本系统用于对学生寝室卫生检查评分进行管理,为学校专用软件!"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 735
Left = 3600
TabIndex = 0
Top = 480
Width = 3375
End
End
Attribute VB_Name = "frmhelp"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Timer1_Timer()
If (Label4.Left - 100 + Label4.Width <= 0) Then
Label4.Left = Picture1.Width
Else
Label4.Left = Label4.Left - 100
End If
End Sub
Private Sub Timer2_Timer()
Label5.Caption = Time
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -