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

📄 frmmain.frm

📁 这是我和同学编嘚图书馆管理信息系统
💻 FRM
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.MDIForm frmMain 
   BackColor       =   &H8000000C&
   Caption         =   "图书馆管理信息系统"
   ClientHeight    =   4995
   ClientLeft      =   165
   ClientTop       =   450
   ClientWidth     =   8235
   LinkTopic       =   "MDIForm1"
   StartUpPosition =   2  '屏幕中心
   WindowState     =   2  'Maximized
   Begin MSComctlLib.StatusBar sbStatusBar 
      Align           =   2  'Align Bottom
      Height          =   270
      Left            =   0
      TabIndex        =   0
      Top             =   4725
      Width           =   8235
      _ExtentX        =   14526
      _ExtentY        =   476
      _Version        =   393216
      BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628} 
         NumPanels       =   3
         BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628} 
            AutoSize        =   1
            Object.Width           =   8864
            Text            =   "Status"
            TextSave        =   "Status"
         EndProperty
         BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628} 
            Style           =   6
            AutoSize        =   2
            TextSave        =   "2008-1-7"
         EndProperty
         BeginProperty Panel3 {8E3867AB-8586-11D1-B16A-00C0F0283628} 
            Style           =   5
            AutoSize        =   2
            TextSave        =   "21:50"
         EndProperty
      EndProperty
   End
   Begin VB.Menu menuSystem 
      Caption         =   "系统"
      Begin VB.Menu menuModifypwd 
         Caption         =   "修改密码"
      End
      Begin VB.Menu menuAdduser 
         Caption         =   "添加用户"
      End
      Begin VB.Menu menu_ 
         Caption         =   "-"
      End
      Begin VB.Menu menuExit 
         Caption         =   "退出"
      End
   End
   Begin VB.Menu menuBook 
      Caption         =   "书籍管理"
      Begin VB.Menu menuBooktype 
         Caption         =   "书籍类别管理"
         Begin VB.Menu menuAddbooktype 
            Caption         =   "添加书籍类别"
         End
         Begin VB.Menu menuModifybooktype 
            Caption         =   "书籍类别综合管理"
         End
      End
      Begin VB.Menu ks 
         Caption         =   "-"
      End
      Begin VB.Menu menuBooks 
         Caption         =   "书籍信息管理"
         Begin VB.Menu menuDeletebook 
            Caption         =   "书籍信息综合管理"
         End
         Begin VB.Menu menuInquirebook 
            Caption         =   "查询书籍信息"
         End
      End
   End
   Begin VB.Menu menuBorrows 
      Caption         =   "借阅信息管理"
      Begin VB.Menu menuBorrowBook 
         Caption         =   "借书"
      End
      Begin VB.Menu menuReturnBook 
         Caption         =   "还书"
      End
      Begin VB.Menu ds 
         Caption         =   "-"
      End
      Begin VB.Menu menuReturn 
         Caption         =   "借/还图书综合管理"
      End
   End
End
Attribute VB_Name = "frmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False


Private Sub menuAddbook_Click()
        frmBookInfo.Show
End Sub



Private Sub menuAddbooktype_Click()
        frmAddBooktype.Show
        
End Sub

Private Sub menuAddborrow_Click()
        frmBookBrwRtnMan.Show
End Sub

Private Sub menuAdduser_Click()
        frmAddUser.Show
        frmAddUser.txtPasswd.Text = ""
End Sub



Private Sub menuBorrowBook_Click()
        frmBookBorrow.Show
End Sub

Private Sub menuDeletebook_Click()
        frmBookInfo.Show
End Sub

Private Sub menuDeletebooktype_Click()
         frmUDBookType.Show
End Sub

Private Sub menuExit_Click()
    
        End
End Sub

Private Sub menuInquirebook_Click()
        frmSearchBook.Show
End Sub

Private Sub menuModifybook_Click()
        frmBookInfo.Show
End Sub

Private Sub menuModifybooktype_Click()
        frmUDBookType.Show
        
End Sub

Private Sub menuModifypwd_Click()

        frmModifyPass.Show
        frmModifyPass.txtUserName.Text = currentUser
        frmModifyPass.txtUserName.Enabled = False
        '用户名不可更改
        
        '将密码的textbox内容设置为空白
        frmModifyPass.txtNewPasswd.Text = ""
        frmModifyPass.txtAffirmPasswd.Text = ""
        
End Sub


Private Sub menuReturn_Click()
        frmBookBrwRtnMan.Show
End Sub

Private Sub menuReturnBook_Click()
        frmBookReturn.Show
End Sub

⌨️ 快捷键说明

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