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

📄 findnoform.frm

📁 成绩管理
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form3 
   Caption         =   "成绩管理系统 V2.1"
   ClientHeight    =   2010
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4260
   LinkTopic       =   "Form3"
   ScaleHeight     =   2010
   ScaleWidth      =   4260
   Begin VB.CommandButton Command2 
      Caption         =   "取消"
      Height          =   375
      Left            =   2760
      TabIndex        =   3
      Top             =   960
      Width           =   855
   End
   Begin VB.CommandButton Command1 
      Caption         =   "确定"
      Height          =   375
      Left            =   960
      TabIndex        =   2
      Top             =   960
      Width           =   855
   End
   Begin VB.TextBox Text1 
      BeginProperty Font 
         Name            =   "System"
         Size            =   12
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   2400
      TabIndex        =   1
      Text            =   "888888"
      Top             =   360
      Width           =   1455
   End
   Begin VB.Label Label1 
      Caption         =   "请输入要查询的学号:"
      BeginProperty Font 
         Name            =   "System"
         Size            =   12
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   255
      Left            =   120
      TabIndex        =   0
      Top             =   360
      Width           =   2415
   End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
gsnamestr = Text1.Text
Unload Me
End Sub

Private Sub Command2_Click()
gsnamestr = ""
Unload Me
End Sub

Private Sub Form_Load()
CenterForm Me
Me.Height = 2485
Me.Width = 4235

End Sub

Private Sub Form_Resize()
Me.Height = 2485
Me.Width = 4035

End Sub

Private Sub Text1_GotFocus()
Text1.SelStart = 0
Text1.SelLength = 10

End Sub

⌨️ 快捷键说明

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