?? querystuplan.frm
字號(hào):
VERSION 5.00
Begin VB.Form FrmQueryStuPlan
BackColor = &H0000FFFF&
Caption = "查詢招生計(jì)劃"
ClientHeight = 4290
ClientLeft = 60
ClientTop = 450
ClientWidth = 6300
LinkTopic = "Form1"
ScaleHeight = 4290
ScaleWidth = 6300
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame2
BackColor = &H0000FFFF&
Caption = "按省份查詢"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1355
Left = 360
TabIndex = 1
Top = 2160
Width = 5535
Begin VB.TextBox Text2
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 450
Left = 1200
TabIndex = 7
Top = 480
Width = 3015
End
Begin VB.CommandButton cmdQbyP
Caption = "查詢"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 450
Left = 4320
TabIndex = 6
Top = 480
Width = 1080
End
Begin VB.Label Label2
BackColor = &H0000FFFF&
Caption = "請(qǐng)輸入省份:"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 120
TabIndex = 5
Top = 600
Width = 1455
End
End
Begin VB.Frame Frame1
BackColor = &H0000FFFF&
Caption = "按院系查詢"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1335
Left = 360
TabIndex = 0
Top = 360
Width = 5535
Begin VB.CommandButton cmdQbyD
Caption = "查詢"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 450
Left = 4320
TabIndex = 4
Top = 360
Width = 1080
End
Begin VB.TextBox txtDept
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 450
Left = 1200
TabIndex = 3
Top = 360
Width = 3015
End
Begin VB.Label Label1
BackColor = &H0000FFFF&
Caption = "請(qǐng)輸入院系:"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 120
TabIndex = 2
Top = 480
Width = 1455
End
End
End
Attribute VB_Name = "FrmQueryStuPlan"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdQbyD_Click()
'先檢測(cè)用戶是否輸入了查詢條件
If txtDept.Text = "" Then
MsgBox "沒有輸入院系查詢條件!", vbOKOnly + vbInformation, ""
Exit Sub
End If
FrmShowStuPlan.Show
End Sub
Private Sub cmdQbyP_Click()
If Text2.Text = "" Then
MsgBox "沒有輸入省份查詢條件!", vbOKOnly + vbInformation, ""
Exit Sub
End If
frmShowPlan2.Show
End Sub
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -