📄 frm_help_aboutus.frm
字号:
VERSION 5.00
Begin VB.Form frm_help_aboutus
BackColor = &H00000000&
BorderStyle = 3 'Fixed Dialog
Caption = "Form1"
ClientHeight = 5325
ClientLeft = 45
ClientTop = 330
ClientWidth = 10695
ForeColor = &H00000000&
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 5325
ScaleWidth = 10695
ShowInTaskbar = 0 'False
Begin VB.Timer Timer1
Interval = 1
Left = 1920
Top = 2400
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Label2"
BeginProperty Font
Name = "华文行楷"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000C000&
Height = 450
Left = 960
TabIndex = 1
Top = 3000
Width = 1080
End
Begin VB.Label Label1
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H80000005&
BackStyle = 0 'Transparent
Caption = "本软件由本小组下列成员倾情奉献"
BeginProperty Font
Name = "华文彩云"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FFFF&
Height = 495
Left = 0
TabIndex = 0
Top = 1800
Width = 7425
End
End
Attribute VB_Name = "frm_help_aboutus"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Label1.Left = 1000
Label1.Top = 1000
Label2.Left = Label1.Left + Label1.Width
Label2.Top = Label1.Top + Label1.Height
Label2.Caption = "陈 晓 伟"
Label2.Caption = Label2.Caption + Chr(13) + Chr(10) + "张 艳 峰"
Label2.Caption = Label2.Caption + Chr(13) + Chr(10) + "刘 刚"
Label2.Caption = Label2.Caption + Chr(13) + Chr(10) + "王 玉 凤"
Label2.Caption = Label2.Caption + Chr(13) + Chr(10) + "吕 红 梅"
End Sub
Private Sub Timer1_Timer()
Label1.Top = Label1.Top - 10
Label2.Top = Label2.Top - 10
If Label2.Top <= -(Label1.Height + Label2.Height) Then
Label1.Top = Me.Height
Label2.Top = Label1.Top + Label1.Height
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -