📄 deng.frm
字号:
VERSION 5.00
Begin VB.Form deng
Caption = "登入"
ClientHeight = 1395
ClientLeft = 60
ClientTop = 450
ClientWidth = 4380
Icon = "deng.frx":0000
LinkTopic = "Form1"
ScaleHeight = 1395
ScaleWidth = 4380
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "进入"
Height = 375
Left = 3240
TabIndex = 2
Top = 720
Width = 735
End
Begin VB.TextBox Text1
Height = 375
Left = 240
TabIndex = 1
Top = 720
Width = 2775
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "请输入你的用户名:"
Height = 255
Left = 240
TabIndex = 0
Top = 360
Width = 2175
End
End
Attribute VB_Name = "deng"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
xingming = Text1.Text
num = Len(Trim(xingming))
deng.Hide
frmClient.Show
End Sub
Private Sub Text1_Change()
If KeyAscii = 13 Then
xingming = Text1.Text
num = Len(Trim(xingming))
deng.Hide
frmClient.Show
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -