📄 paysearch.frm
字号:
VERSION 5.00
Begin VB.Form PaySearch
Caption = "教师工资查询"
ClientHeight = 4005
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 4005
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command2
Caption = "退出"
Height = 495
Left = 2880
TabIndex = 2
Top = 3240
Width = 1095
End
Begin VB.CommandButton Command1
Caption = "查询"
Height = 495
Left = 720
TabIndex = 1
Top = 3240
Width = 1095
End
Begin VB.Frame Frame1
Caption = "请输入以下信息"
Height = 2535
Left = 240
TabIndex = 0
Top = 240
Width = 4215
Begin VB.TextBox Text2
Height = 495
Left = 1920
TabIndex = 6
Top = 1440
Width = 1575
End
Begin VB.TextBox Text1
Height = 495
Left = 1920
TabIndex = 5
Top = 480
Width = 1575
End
Begin VB.Label Label2
Caption = "教师号"
Height = 495
Left = 720
TabIndex = 4
Top = 1560
Width = 1215
End
Begin VB.Label Label1
Caption = "教师姓名"
Height = 495
Left = 720
TabIndex = 3
Top = 600
Width = 1215
End
End
End
Attribute VB_Name = "PaySearch"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If Text1.Text <> "" And Text2.Text <> "" Then
TeacherName = Trim(Text1.Text)
TeacherNum = Trim(Text2.Text)
PayViewP.Show
Else
MsgBox ("您输入的信息不完整,请重新输入")
End If
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -