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

📄 form1.frm

📁 具体的各个功能如下: 1.图书查询。实现对图书馆所有馆藏图书的查询。 2.借阅图书。完成学生对指定图书的借阅。 3.查询个人借阅信息。完成对指定学生个人借阅图书记录的查询
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "图书管理系统"
   ClientHeight    =   8760
   ClientLeft      =   60
   ClientTop       =   420
   ClientWidth     =   11460
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   ScaleHeight     =   8760
   ScaleWidth      =   11460
   StartUpPosition =   2  '屏幕中心
   WindowState     =   2  'Maximized
   Begin VB.PictureBox Picture1 
      Height          =   8775
      Left            =   0
      Picture         =   "form1.frx":0000
      ScaleHeight     =   8715
      ScaleWidth      =   11475
      TabIndex        =   0
      Top             =   0
      Width           =   11535
      Begin VB.Label Label1 
         BackColor       =   &H000080FF&
         Caption         =   "图  书  管  理   系  统"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   26.25
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   735
         Left            =   2040
         TabIndex        =   1
         Top             =   3240
         Width           =   6735
      End
   End
   Begin VB.Menu book_manage 
      Caption         =   "图书管理"
      Begin VB.Menu book_style_manage 
         Caption         =   "图书类别管理"
         Begin VB.Menu add_book_style 
            Caption         =   "添加图书类别"
         End
         Begin VB.Menu modify_book_style 
            Caption         =   "修改图书类别"
         End
         Begin VB.Menu del_book_style 
            Caption         =   "删除图书类别"
         End
      End
      Begin VB.Menu book_info_manage 
         Caption         =   "图书信息管理"
         Begin VB.Menu add_book_info 
            Caption         =   "添加图书信息"
         End
         Begin VB.Menu modify_book_info 
            Caption         =   "修改图书信息"
         End
         Begin VB.Menu del_book_info 
            Caption         =   "删除图书信息"
         End
         Begin VB.Menu find_book_info 
            Caption         =   "查询图书信息"
         End
      End
   End
   Begin VB.Menu reader_manage 
      Caption         =   "读者管理"
      Begin VB.Menu reader_style_manage 
         Caption         =   "读者类别管理"
         Begin VB.Menu add_reader_style 
            Caption         =   "添加读者类别"
         End
         Begin VB.Menu modify_reader_style 
            Caption         =   "修改读者类别"
         End
         Begin VB.Menu del_reader_style 
            Caption         =   "删除读者类别"
         End
      End
      Begin VB.Menu reader_info_manage 
         Caption         =   "读者信息管理"
         Begin VB.Menu add_reader_info 
            Caption         =   "添加读者信息"
         End
         Begin VB.Menu modify_reader_info 
            Caption         =   "修改读者信息"
         End
         Begin VB.Menu del_reader_info 
            Caption         =   "删除读者信息"
         End
         Begin VB.Menu find_reader_info 
            Caption         =   "查询读者信息"
         End
      End
   End
   Begin VB.Menu book_lend 
      Caption         =   "图书借阅管理"
      Begin VB.Menu lend_book_manage 
         Caption         =   "借书管理"
         Begin VB.Menu add_lend_book 
            Caption         =   "添加借书信息"
         End
         Begin VB.Menu find_lend_book 
            Caption         =   "查询借书信息"
         End
      End
      Begin VB.Menu back_book_manage 
         Caption         =   "还书管理"
         Begin VB.Menu add_back_book 
            Caption         =   "添加还书信息"
         End
      End
   End
   Begin VB.Menu sys_manage 
      Caption         =   "系统管理"
      Begin VB.Menu add_admin 
         Caption         =   "添加管理员"
      End
      Begin VB.Menu change_pwd 
         Caption         =   "修改密码"
      End
      Begin VB.Menu exit_sys 
         Caption         =   "退出系统"
      End
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private Sub add_admin_Click()
frmadduser.Show
End Sub

Private Sub add_back_book_Click()
frmbackbookinfo.Show
End Sub

Private Sub add_book_info_Click()
frmaddbookinfo.Show
End Sub

Private Sub add_book_style_Click()
frmaddbookstyle.Show
End Sub

Private Sub add_lend_book_Click()
frmfindbook.Show
End Sub

Private Sub add_reader_info_Click()
frmaddreaderinfo.Show
End Sub

Private Sub add_reader_style_Click()
frmaddreaderstyle.Show
End Sub

Private Sub change_pwd_Click()
frmchangepwd.Show
End Sub

Private Sub del_book_info_Click()
frmmodifybookinfo.Show
End Sub

Private Sub del_book_style_Click()
frmmodifybookstyle.Show
End Sub

Private Sub del_reader_info_Click()
frmreaderinfo.Show
End Sub

Private Sub del_reader_style_Click()
frmmodifyreaderstyle.Show
End Sub

Private Sub exit_sys_Click()
End
End Sub

Private Sub find_book_info_Click()
frmfindbook.Show
End Sub

Private Sub find_lend_book_Click()
frmfindborrowinfo.Show
End Sub

Private Sub find_reader_info_Click()
frmfindreader.Show
End Sub

Private Sub modify_book_info_Click()
frmmodifybookinfo.Show
End Sub

Private Sub modify_book_style_Click()
frmmodifybookstyle.Show
End Sub

Private Sub modify_reader_info_Click()
frmreaderinfo.Show
End Sub

Private Sub modify_reader_style_Click()
frmmodifyreaderstyle.Show
End Sub

⌨️ 快捷键说明

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