⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 anxingm.frm

📁 VB+access 的桌面型应用系统 学校应用其管理毕业论文
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Anxingm 
   Caption         =   "Form1"
   ClientHeight    =   5460
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   8925
   LinkTopic       =   "Form1"
   ScaleHeight     =   5460
   ScaleWidth      =   8925
   StartUpPosition =   3  'Windows Default
   Begin VB.Frame Frame1 
      Caption         =   "按姓名查询基本信息"
      Height          =   4695
      Left            =   480
      TabIndex        =   0
      Top             =   360
      Width           =   7575
      Begin VB.CommandButton tijiao 
         Caption         =   "提交"
         Height          =   855
         Left            =   5160
         TabIndex        =   3
         Top             =   1920
         Width           =   1695
      End
      Begin VB.TextBox Text 
         Height          =   1095
         Left            =   2160
         TabIndex        =   2
         Top             =   1800
         Width           =   2055
      End
      Begin VB.Label Label1 
         Caption         =   "输入学生姓名"
         Height          =   735
         Left            =   240
         TabIndex        =   1
         Top             =   1920
         Width           =   1575
      End
   End
End
Attribute VB_Name = "Anxingm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Tijiao_Click()
 If Text.Text = "" Then
     MsgBox "没有输入查询条件!", vbOKOnly + vbInformation, ""
     Exit Sub
  End If
  frmShowxsxinxi.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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -