📄 frmquery.frm
字号:
VERSION 5.00
Begin VB.Form frmQuery
Caption = "数据查询"
ClientHeight = 2925
ClientLeft = 60
ClientTop = 345
ClientWidth = 4695
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 2925
ScaleWidth = 4695
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame2
Height = 1095
Left = 1080
TabIndex = 6
Top = 720
Width = 2535
Begin VB.OptionButton Option3
Caption = "按日期查询"
Height = 255
Left = 120
TabIndex = 8
Top = 240
Width = 1455
End
Begin VB.OptionButton Option4
Caption = "按单位查询"
Height = 210
Left = 120
TabIndex = 7
Top = 720
Width = 1455
End
End
Begin VB.CommandButton cmdCancel
Caption = "放弃查询"
Height = 375
Left = 2640
TabIndex = 5
Top = 2280
Width = 1095
End
Begin VB.CommandButton cmdQuery
Caption = "开始查询"
Height = 375
Left = 600
TabIndex = 4
Top = 2280
Width = 1095
End
Begin VB.Frame Frame1
Height = 1095
Left = 1080
TabIndex = 1
Top = 720
Width = 2535
Begin VB.OptionButton Option2
Caption = "按编号查询"
BeginProperty Font
Name = "楷体_GB2312"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 120
TabIndex = 3
Top = 720
Width = 1455
End
Begin VB.OptionButton Option1
Caption = "按姓名查询"
BeginProperty Font
Name = "楷体_GB2312"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 120
TabIndex = 2
Top = 240
Width = 1455
End
End
Begin VB.Label Label1
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "Label1"
BeginProperty Font
Name = "隶书"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 615
Left = 240
TabIndex = 0
Top = 120
Width = 4215
End
End
Attribute VB_Name = "frmQuery"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdCancel_Click()
Unload Me
End Sub
Private Sub cmdQuery_Click()
If frmQuery.Label1.Caption = "您现在进行的是教师研究生工作查询,请选择查询方式!" Then frmStartQuery1.Show
If frmQuery.Label1.Caption = "您现在进行的是教师本科生工作查询,请选择查询方式!" Then frmStartQuery2.Show
If frmQuery.Label1.Caption = "您现在进行的是教师考勤查询,请选择查询方式!" Then frmStartQuery3.Show
If frmQuery.Label1.Caption = "您现在进行的是教师实验实习工作查询,请选择查询方式!" Then frmStartQuery4.Show
If frmQuery.Label1.Caption = "您现在进行的是教师其它工作查询,请选择查询方式!" Then frmStartQuery5.Show
End Sub
Private Sub Form_Load()
frmQuery.Picture = LoadPicture(App.Path + "\picture\中国娃娃1.bmp")
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -