📄 招生计划查询.frm
字号:
VERSION 5.00
Begin VB.Form zhaosheng
BorderStyle = 1 'Fixed Single
Caption = "招生查询"
ClientHeight = 3900
ClientLeft = 45
ClientTop = 450
ClientWidth = 6615
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "招生计划查询.frx":0000
ScaleHeight = 3900
ScaleWidth = 6615
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame2
Caption = "按省份查询:"
Height = 975
Left = 360
TabIndex = 4
Top = 2040
Width = 6015
Begin VB.TextBox text2
Height = 270
Left = 1320
TabIndex = 6
Top = 360
Width = 1695
End
Begin VB.CommandButton cmdQbyP
Caption = "查 询"
Height = 375
Left = 3960
TabIndex = 5
Top = 360
Width = 1215
End
Begin VB.Label Label2
Caption = "请输入省份:"
Height = 255
Left = 120
TabIndex = 7
Top = 360
Width = 1095
End
End
Begin VB.Frame Frame1
Caption = "按专业查询:"
Height = 975
Left = 360
TabIndex = 0
Top = 480
Width = 6015
Begin VB.TextBox text1
Height = 270
Left = 1320
TabIndex = 2
Top = 360
Width = 1695
End
Begin VB.CommandButton cmdQbyD
Caption = "查 询"
Height = 375
Left = 3960
TabIndex = 1
Top = 360
Width = 1215
End
Begin VB.Label Label1
Caption = "请输入专业:"
Height = 255
Left = 120
TabIndex = 3
Top = 360
Width = 1095
End
End
End
Attribute VB_Name = "zhaosheng"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdQbyD_Click()
If text1.Text = "" Then
MsgBox "没有输入专业查询条件!", vbOKOnly + vbInformation, ""
Exit Sub
End If
zhaosheng1_1.Show
End Sub
Private Sub cmdQbyP_Click()
If text2.Text = "" Then
MsgBox "没有输入省份查询条件!", vbOKOnly + vbInformation, ""
Exit Sub
End If
zhaosheng1_2.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -