📄 form5.frm
字号:
VERSION 5.00
Begin VB.Form Form5
BorderStyle = 0 'None
Caption = "Form5"
ClientHeight = 2550
ClientLeft = 0
ClientTop = 0
ClientWidth = 2340
LinkTopic = "Form5"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
Picture = "Form5.frx":0000
ScaleHeight = 2550
ScaleWidth = 2340
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "确定"
Height = 345
Left = 750
TabIndex = 1
Top = 1650
Width = 825
End
Begin VB.TextBox Text1
Height = 270
Left = 300
TabIndex = 0
Text = "佚名"
Top = 1200
Width = 1815
End
Begin VB.Label Label1
Caption = "初"
Height = 195
Left = 900
TabIndex = 2
Top = 158
Width = 165
End
End
Attribute VB_Name = "Form5"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
leitime(jibie - 1) = TimeNums
leiname(jibie - 1) = Text1
Unload Me
Form4.Move Form1.Left + 50, Form1.Top + 1200
Form4.Show
End Sub
Private Sub Form_Load()
Text1.SelStart = 0
Text1.SelLength = Len(Text1)
If jibie = 1 Then Label1.Caption = "初"
If jibie = 2 Then Label1.Caption = "中"
If jibie = 3 Then Label1.Caption = "高"
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Command1_Click
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -