anxueyuan.frm
来自「VB+access 的桌面型应用系统 学校应用其管理毕业论文」· FRM 代码 · 共 72 行
FRM
72 行
VERSION 5.00
Begin VB.Form AnXy
Caption = "Form1"
ClientHeight = 4680
ClientLeft = 60
ClientTop = 450
ClientWidth = 7485
LinkTopic = "Form1"
ScaleHeight = 4680
ScaleWidth = 7485
StartUpPosition = 3 'Windows Default
Begin VB.Frame Frame1
Caption = "按学院查询"
Height = 3855
Left = 480
TabIndex = 0
Top = 240
Width = 6375
Begin VB.CommandButton commit
Caption = "查询"
Height = 615
Left = 4920
TabIndex = 3
Top = 1320
Width = 1095
End
Begin VB.TextBox Text
Height = 855
Left = 1800
TabIndex = 2
Top = 1200
Width = 2655
End
Begin VB.Label Label1
Caption = "请输入学院名称"
Height = 615
Left = 360
TabIndex = 1
Top = 1440
Width = 1695
End
End
End
Attribute VB_Name = "AnXy"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub commit_Click()
If Text.Text = "" Then
MsgBox "没有输入查询条件!", vbOKOnly + vbInformation, ""
Exit Sub
End If
frmShowChengji.Show
End Sub
Private Sub Form_Load()
Dim X0 As Long
Dim Y0 As Long
'让窗体居中
X0 = Screen.Width
Y0 = Screen.Height
X0 = (X0 - Me.Width) / 2
Y0 = (Y0 - Me.Height) / 2
Me.Move X0, Y0
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?