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

📄 readersearch.vb

📁 vb.net写的图书管理系统,功能完备,能正常使用,可用于二次开发.
💻 VB
📖 第 1 页 / 共 2 页
字号:
Public Class ReaderSearch
    Inherits System.Windows.Forms.Form

#Region " Windows 窗体设计器生成的代码 "

    Public Sub New()
        MyBase.New()

        '该调用是 Windows 窗体设计器所必需的。
        InitializeComponent()

        '在 InitializeComponent() 调用之后添加任何初始化

    End Sub

    '窗体重写 dispose 以清理组件列表。
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is Nothing) Then
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Windows 窗体设计器所必需的
    Private components As System.ComponentModel.IContainer

    '注意: 以下过程是 Windows 窗体设计器所必需的
    '可以使用 Windows 窗体设计器修改此过程。
    '不要使用代码编辑器修改它。
    Friend WithEvents btnCancel As System.Windows.Forms.Button
    Friend WithEvents lsvResult As System.Windows.Forms.ListView
    Friend WithEvents ColumnHeader1 As System.Windows.Forms.ColumnHeader
    Friend WithEvents ColumnHeader2 As System.Windows.Forms.ColumnHeader
    Friend WithEvents ColumnHeader3 As System.Windows.Forms.ColumnHeader
    Friend WithEvents ColumnHeader4 As System.Windows.Forms.ColumnHeader
    Friend WithEvents ColumnHeader5 As System.Windows.Forms.ColumnHeader
    Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents btnSearch As System.Windows.Forms.Button
    Friend WithEvents ColumnHeader6 As System.Windows.Forms.ColumnHeader
    Friend WithEvents ColumnHeader7 As System.Windows.Forms.ColumnHeader
    Friend WithEvents Label3 As System.Windows.Forms.Label
    Friend WithEvents Label2 As System.Windows.Forms.Label
    Friend WithEvents Label4 As System.Windows.Forms.Label
    Friend WithEvents Label5 As System.Windows.Forms.Label
    Friend WithEvents Label6 As System.Windows.Forms.Label
    Friend WithEvents txtMinNum As System.Windows.Forms.TextBox
    Friend WithEvents cmbGender As System.Windows.Forms.ComboBox
    Friend WithEvents txtMaxNum As System.Windows.Forms.TextBox
    Friend WithEvents txtMaxTime As System.Windows.Forms.TextBox
    Friend WithEvents txtMinTime As System.Windows.Forms.TextBox
    Friend WithEvents chkOr As System.Windows.Forms.CheckBox
    Friend WithEvents chkFuzzy As System.Windows.Forms.CheckBox
    Friend WithEvents txtReaderName As System.Windows.Forms.TextBox
    Friend WithEvents btnEdit As System.Windows.Forms.Button
    Friend WithEvents btnViewHistory As System.Windows.Forms.Button
    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
        Me.btnCancel = New System.Windows.Forms.Button
        Me.btnEdit = New System.Windows.Forms.Button
        Me.lsvResult = New System.Windows.Forms.ListView
        Me.ColumnHeader1 = New System.Windows.Forms.ColumnHeader
        Me.ColumnHeader2 = New System.Windows.Forms.ColumnHeader
        Me.ColumnHeader3 = New System.Windows.Forms.ColumnHeader
        Me.ColumnHeader4 = New System.Windows.Forms.ColumnHeader
        Me.ColumnHeader5 = New System.Windows.Forms.ColumnHeader
        Me.ColumnHeader6 = New System.Windows.Forms.ColumnHeader
        Me.GroupBox1 = New System.Windows.Forms.GroupBox
        Me.chkFuzzy = New System.Windows.Forms.CheckBox
        Me.chkOr = New System.Windows.Forms.CheckBox
        Me.txtMaxTime = New System.Windows.Forms.TextBox
        Me.Label5 = New System.Windows.Forms.Label
        Me.txtMinTime = New System.Windows.Forms.TextBox
        Me.Label6 = New System.Windows.Forms.Label
        Me.txtMaxNum = New System.Windows.Forms.TextBox
        Me.Label4 = New System.Windows.Forms.Label
        Me.cmbGender = New System.Windows.Forms.ComboBox
        Me.Label2 = New System.Windows.Forms.Label
        Me.txtReaderName = New System.Windows.Forms.TextBox
        Me.Label3 = New System.Windows.Forms.Label
        Me.txtMinNum = New System.Windows.Forms.TextBox
        Me.Label1 = New System.Windows.Forms.Label
        Me.btnSearch = New System.Windows.Forms.Button
        Me.btnViewHistory = New System.Windows.Forms.Button
        Me.GroupBox1.SuspendLayout()
        Me.SuspendLayout()
        '
        'btnCancel
        '
        Me.btnCancel.Location = New System.Drawing.Point(344, 400)
        Me.btnCancel.Name = "btnCancel"
        Me.btnCancel.Size = New System.Drawing.Size(72, 28)
        Me.btnCancel.TabIndex = 14
        Me.btnCancel.Text = "退出"
        '
        'btnEdit
        '
        Me.btnEdit.Location = New System.Drawing.Point(160, 400)
        Me.btnEdit.Name = "btnEdit"
        Me.btnEdit.Size = New System.Drawing.Size(72, 28)
        Me.btnEdit.TabIndex = 13
        Me.btnEdit.Text = "编辑"
        '
        'lsvResult
        '
        Me.lsvResult.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.ColumnHeader1, Me.ColumnHeader2, Me.ColumnHeader3, Me.ColumnHeader4, Me.ColumnHeader5})
        Me.lsvResult.Location = New System.Drawing.Point(10, 144)
        Me.lsvResult.Name = "lsvResult"
        Me.lsvResult.Size = New System.Drawing.Size(406, 240)
        Me.lsvResult.TabIndex = 30
        Me.lsvResult.View = System.Windows.Forms.View.Details
        '
        'ColumnHeader1
        '
        Me.ColumnHeader1.Text = "ID"
        Me.ColumnHeader1.Width = 50
        '
        'ColumnHeader2
        '
        Me.ColumnHeader2.Text = "姓名"
        Me.ColumnHeader2.Width = 90
        '
        'ColumnHeader3
        '
        Me.ColumnHeader3.Text = "性别"
        '
        'ColumnHeader4
        '
        Me.ColumnHeader4.Text = "最多可借阅本数"
        Me.ColumnHeader4.Width = 100
        '
        'ColumnHeader5
        '
        Me.ColumnHeader5.Text = "最多可借阅天数"
        Me.ColumnHeader5.Width = 100
        '
        'GroupBox1
        '
        Me.GroupBox1.Controls.Add(Me.chkFuzzy)
        Me.GroupBox1.Controls.Add(Me.chkOr)
        Me.GroupBox1.Controls.Add(Me.txtMaxTime)
        Me.GroupBox1.Controls.Add(Me.Label5)
        Me.GroupBox1.Controls.Add(Me.txtMinTime)
        Me.GroupBox1.Controls.Add(Me.Label6)
        Me.GroupBox1.Controls.Add(Me.txtMaxNum)
        Me.GroupBox1.Controls.Add(Me.Label4)
        Me.GroupBox1.Controls.Add(Me.cmbGender)
        Me.GroupBox1.Controls.Add(Me.Label2)
        Me.GroupBox1.Controls.Add(Me.txtReaderName)
        Me.GroupBox1.Controls.Add(Me.Label3)
        Me.GroupBox1.Controls.Add(Me.txtMinNum)
        Me.GroupBox1.Controls.Add(Me.Label1)
        Me.GroupBox1.Controls.Add(Me.btnSearch)
        Me.GroupBox1.Location = New System.Drawing.Point(10, 9)
        Me.GroupBox1.Name = "GroupBox1"
        Me.GroupBox1.Size = New System.Drawing.Size(406, 119)
        Me.GroupBox1.TabIndex = 29
        Me.GroupBox1.TabStop = False
        Me.GroupBox1.Text = "设置查询"
        '
        'chkFuzzy
        '
        Me.chkFuzzy.Location = New System.Drawing.Point(320, 24)
        Me.chkFuzzy.Name = "chkFuzzy"
        Me.chkFuzzy.Size = New System.Drawing.Size(80, 24)
        Me.chkFuzzy.TabIndex = 44
        Me.chkFuzzy.Text = "模糊查询"
        '
        'chkOr
        '
        Me.chkOr.Location = New System.Drawing.Point(320, 48)
        Me.chkOr.Name = "chkOr"
        Me.chkOr.Size = New System.Drawing.Size(64, 24)
        Me.chkOr.TabIndex = 43
        Me.chkOr.Text = "或关系"
        '
        'txtMaxTime
        '
        Me.txtMaxTime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.txtMaxTime.Location = New System.Drawing.Point(232, 88)
        Me.txtMaxTime.Name = "txtMaxTime"
        Me.txtMaxTime.Size = New System.Drawing.Size(72, 21)
        Me.txtMaxTime.TabIndex = 42
        Me.txtMaxTime.Text = ""
        '
        'Label5
        '
        Me.Label5.Location = New System.Drawing.Point(200, 88)
        Me.Label5.Name = "Label5"
        Me.Label5.Size = New System.Drawing.Size(16, 16)
        Me.Label5.TabIndex = 41
        Me.Label5.Text = "至"
        '
        'txtMinTime
        '
        Me.txtMinTime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.txtMinTime.Location = New System.Drawing.Point(112, 88)
        Me.txtMinTime.Name = "txtMinTime"
        Me.txtMinTime.Size = New System.Drawing.Size(72, 21)
        Me.txtMinTime.TabIndex = 40
        Me.txtMinTime.Text = ""
        '
        'Label6
        '
        Me.Label6.Location = New System.Drawing.Point(16, 88)
        Me.Label6.Name = "Label6"
        Me.Label6.Size = New System.Drawing.Size(96, 16)
        Me.Label6.TabIndex = 39
        Me.Label6.Text = "最多可借阅天数"
        '
        'txtMaxNum
        '
        Me.txtMaxNum.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.txtMaxNum.Location = New System.Drawing.Point(232, 56)
        Me.txtMaxNum.Name = "txtMaxNum"
        Me.txtMaxNum.Size = New System.Drawing.Size(72, 21)
        Me.txtMaxNum.TabIndex = 38
        Me.txtMaxNum.Text = ""
        '
        'Label4
        '
        Me.Label4.Location = New System.Drawing.Point(200, 64)
        Me.Label4.Name = "Label4"
        Me.Label4.Size = New System.Drawing.Size(16, 16)
        Me.Label4.TabIndex = 37
        Me.Label4.Text = "至"
        '
        'cmbGender
        '
        Me.cmbGender.Items.AddRange(New Object() {"", "男", "女"})
        Me.cmbGender.Location = New System.Drawing.Point(232, 24)
        Me.cmbGender.Name = "cmbGender"
        Me.cmbGender.Size = New System.Drawing.Size(72, 20)
        Me.cmbGender.TabIndex = 36
        '
        'Label2
        '
        Me.Label2.Location = New System.Drawing.Point(192, 32)

⌨️ 快捷键说明

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