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

📄 frmdinw.frm

📁 Vb以及SQL的学生信息系统 软件简介: 学生信息管理系统
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmDinW 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "记录定位"
   ClientHeight    =   1920
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   3960
   Icon            =   "frmDinW.frx":0000
   LinkTopic       =   "Form1"
   LockControls    =   -1  'True
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1920
   ScaleWidth      =   3960
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.TextBox txtXueH 
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   14.25
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00000000&
      Height          =   405
      Left            =   840
      TabIndex        =   0
      Top             =   570
      Width           =   2415
   End
   Begin VB.PictureBox cmdexit 
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   435
      Left            =   2190
      ScaleHeight     =   375
      ScaleWidth      =   1005
      TabIndex        =   3
      Top             =   1230
      Width           =   1065
   End
   Begin VB.PictureBox CMDYES 
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   435
      Left            =   840
      ScaleHeight     =   375
      ScaleWidth      =   1005
      TabIndex        =   2
      Top             =   1230
      Width           =   1065
   End
   Begin VB.Label Label1 
      Caption         =   "请输入定位学号:"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   12
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00000000&
      Height          =   315
      Left            =   870
      TabIndex        =   1
      Top             =   210
      Width           =   1875
   End
End
Attribute VB_Name = "frmDinW"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim REC As Recordset
Private Sub cmdExit_Click()
Unload Me
End Sub

Private Sub cmdYes_Click()
XH = ""
If Len(txtXueH) = 0 Then
    MsgBox "学号为空", vbExclamation + vbOKOnly, "警告"
Else
    XH = Trim(txtXueH)
End If
Unload Me
End Sub

Private Sub txtXueH_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Call cmdYes_Click
End If
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -