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

📄 form1.frm

📁 《草堂图书管理系统》提供了丰富的可视信息
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form1 
   BackColor       =   &H00C0E0FF&
   Caption         =   "草堂图书管理系统"
   ClientHeight    =   3690
   ClientLeft      =   165
   ClientTop       =   735
   ClientWidth     =   6045
   LinkTopic       =   "Form1"
   Picture         =   "Form1.frx":0000
   ScaleHeight     =   3690
   ScaleWidth      =   6045
   StartUpPosition =   3  '窗口缺省
   Begin VB.Timer Timer1 
      Interval        =   1000
      Left            =   6120
      Top             =   0
   End
   Begin VB.CommandButton Command5 
      Caption         =   "借书"
      Height          =   495
      Left            =   360
      TabIndex        =   3
      Top             =   480
      Width           =   735
   End
   Begin VB.CommandButton Command4 
      Caption         =   "书库"
      Height          =   495
      Left            =   360
      TabIndex        =   2
      Top             =   2880
      Width           =   735
   End
   Begin VB.CommandButton Command3 
      Caption         =   "学号"
      Height          =   495
      Left            =   360
      TabIndex        =   1
      Top             =   2160
      Width           =   735
   End
   Begin VB.CommandButton Command1 
      Caption         =   "还书"
      Height          =   495
      Left            =   360
      TabIndex        =   0
      Top             =   1320
      Width           =   735
   End
   Begin VB.Menu OP 
      Caption         =   "系统管理"
      Begin VB.Menu J 
         Caption         =   "借书"
         Shortcut        =   ^A
      End
      Begin VB.Menu H 
         Caption         =   "还书"
         Shortcut        =   ^B
      End
      Begin VB.Menu q 
         Caption         =   "退出"
         Shortcut        =   ^Q
      End
   End
   Begin VB.Menu W 
      Caption         =   "借阅管理"
      Begin VB.Menu I 
         Caption         =   "书库索引"
      End
      Begin VB.Menu I2 
         Caption         =   "学号索引"
      End
   End
   Begin VB.Menu G 
      Caption         =   "系统登陆"
      Begin VB.Menu T 
         Caption         =   "密码"
      End
   End
   Begin VB.Menu H1 
      Caption         =   "帮助"
      Begin VB.Menu Z 
         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 Picture1_Click()

End Sub


Private Sub Command1_Click()
frmS_book.Show
End Sub

Private Sub Command3_Click()
frmS_no.Show
End Sub

Private Sub Command4_Click()
frmlibary.Show
End Sub

Private Sub Command5_Click()
frmS_book.Show
End Sub

Private Sub Form_Load()
frmSplash.Show
frmSplash.Refresh
Left = (Screen.Width - Width) \ 2
Top = (Screen.Height - Height) \ 2
Form1.Hide
End Sub

Private Sub H_Click()
Form2.Show
End Sub

Private Sub I_Click()
frmS_book.Show
End Sub

Private Sub I2_Click()
frmS_no.Show
End Sub

Private Sub J_Click()
Form2.Show
End Sub

Private Sub q_Click()
Unload Me
End Sub

Private Sub T_Click()
frmLogin.Show
End Sub

Private Sub Z_Click()
frmAbout.Show
End Sub

Private Sub Timer1_Timer()
Unload frmSplash
Timer1.Enabled = False
Form1.Show

End Sub

⌨️ 快捷键说明

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