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

📄 form10.frm

📁 基于VB和SQL的邮件自动处理辅助教学系统原码
💻 FRM
字号:
VERSION 5.00
Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.3#0"; "COMCTL32.OCX"
Begin VB.Form Form10 
   Caption         =   "搜索"
   ClientHeight    =   4980
   ClientLeft      =   60
   ClientTop       =   510
   ClientWidth     =   7440
   LinkTopic       =   "Form10"
   ScaleHeight     =   4980
   ScaleWidth      =   7440
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton Command2 
      Caption         =   "返回"
      Height          =   495
      Left            =   3600
      TabIndex        =   6
      Top             =   3840
      Width           =   975
   End
   Begin VB.CommandButton Command1 
      Caption         =   "确定"
      Height          =   495
      Left            =   1920
      TabIndex        =   5
      Top             =   3840
      Width           =   1095
   End
   Begin VB.Frame Frame1 
      Caption         =   "查询条件"
      Height          =   3135
      Left            =   720
      TabIndex        =   0
      Top             =   240
      Width           =   5775
      Begin VB.TextBox Text2 
         Height          =   495
         Left            =   2880
         TabIndex        =   4
         Top             =   1560
         Width           =   1935
      End
      Begin VB.TextBox Text1 
         Height          =   495
         Left            =   2880
         TabIndex        =   3
         Top             =   600
         Width           =   1935
      End
      Begin VB.OptionButton Option2 
         Caption         =   "查询班级名单,请输入班级:"
         Height          =   495
         Left            =   360
         TabIndex        =   2
         Top             =   1560
         Width           =   1815
      End
      Begin VB.OptionButton Option1 
         Caption         =   "学号精确查询,请输入学号:"
         Height          =   540
         Left            =   360
         TabIndex        =   1
         Top             =   600
         Width           =   2055
      End
   End
   Begin ComctlLib.StatusBar StatusBar1 
      Align           =   2  'Align Bottom
      Height          =   495
      Left            =   0
      TabIndex        =   7
      Top             =   4485
      Width           =   7440
      _ExtentX        =   13123
      _ExtentY        =   873
      SimpleText      =   ""
      _Version        =   327682
      BeginProperty Panels {0713E89E-850A-101B-AFC0-4210102A8DA7} 
         NumPanels       =   3
         BeginProperty Panel1 {0713E89F-850A-101B-AFC0-4210102A8DA7} 
            Object.Width           =   4410
            MinWidth        =   4410
            Text            =   "邮件自动处理系统欢迎您"
            TextSave        =   "邮件自动处理系统欢迎您"
            Object.Tag             =   ""
         EndProperty
         BeginProperty Panel2 {0713E89F-850A-101B-AFC0-4210102A8DA7} 
            Style           =   6
            Alignment       =   2
            AutoSize        =   1
            Object.Width           =   5530
            TextSave        =   "2006-6-13"
            Object.Tag             =   ""
         EndProperty
         BeginProperty Panel3 {0713E89F-850A-101B-AFC0-4210102A8DA7} 
            Style           =   5
            Alignment       =   2
            TextSave        =   "11:12"
            Object.Tag             =   ""
         EndProperty
      EndProperty
   End
End
Attribute VB_Name = "Form10"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim i As Integer
If Option1.Value = True Then
If Text1.Text = "" Then
i = MsgBox("输入您所要查询的学号:", 5 + vbExclamation, "搜索内容不能为空!")
Else
Form10.Hide
Form8.Show
End If
Else
If Text2.Text = "" Then
i = MsgBox("输入您所要查询的班级号:", 5 + vbExclamation, "搜索内容不能为空!")
Else
Form10.Hide
Form11.Show
End If
End If
End Sub

Private Sub Command2_Click()
Form10.Hide
Form2.Show
End Sub

Private Sub Form_Load()
Text2.Text = ""
Text1.Text = ""
End Sub

⌨️ 快捷键说明

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