📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form FrmAbout
BorderStyle = 1 'Fixed Single
Caption = "关于"
ClientHeight = 2835
ClientLeft = 45
ClientTop = 330
ClientWidth = 4065
Icon = "FrmAbout.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "FrmAbout.frx":0442
ScaleHeight = 2835
ScaleWidth = 4065
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command1
BackColor = &H80000009&
Caption = "确定"
Default = -1 'True
Height = 375
Left = 1320
Style = 1 'Graphical
TabIndex = 1
Top = 2400
Width = 975
End
Begin VB.Timer Timer1
Interval = 150
Left = 2640
Top = 2520
End
Begin VB.TextBox Text1
BackColor = &H80000006&
ForeColor = &H0080FF80&
Height = 2175
Left = 240
MultiLine = -1 'True
TabIndex = 0
Top = 240
Width = 3495
End
End
Attribute VB_Name = "FrmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim str As String
Public i As Integer
Private Sub Command1_Click()
Unload Me
frmReg.Show
End Sub
Private Sub Form_Load()
i = 0
str = vbCrLf & vbCrLf & "QQ:137811181 " & vbCrLf & "E-mail:nicesky1@tom.com" _
& vbCrLf & "HomePage:http://my.6to23.com/nicesky1" & vbCrLf & "Written by 李天"
End Sub
Private Sub Timer1_Timer()
i = i + 1
If i <= Len(str) Then
Text1.Text = Text1.Text & Mid(str, i, 1)
Else
Timer1.Enabled = False
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -