📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "腾讯QQ2008"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 465
ClientWidth = 4860
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 3195
ScaleWidth = 4860
StartUpPosition = 2 '屏幕中心
Begin VB.TextBox Text2
Height = 270
IMEMode = 3 'DISABLE
Left = 1320
PasswordChar = "*"
TabIndex = 1
Top = 1650
Width = 1935
End
Begin VB.TextBox Text1
Height = 270
Left = 1320
TabIndex = 0
Top = 1080
Width = 1935
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Height = 375
Left = 3600
TabIndex = 2
Top = 2640
Width = 1215
End
Begin VB.Image Image1
Height = 3195
Left = 0
Picture = "Form1.frx":0000
Top = 0
Width = 4860
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Label1_Click()
If Text1.Text = "" Or Text2.Text = "" Then
MsgBox "请输入你的QQ号和密码", vbQuestion, "提示"
Exit Sub
End If
If Not IsNumeric(Text1.Text) Then
MsgBox "请输入你的QQ号码,号码是数字", vbQuestion, "提示"
Exit Sub
End If
Form1.Hide
Form2.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -