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

📄 about.frm

📁 图书管理系统:分成图书管理模块和图书查询模块
💻 FRM
字号:
VERSION 5.00
Begin VB.Form about 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "关于虚拟图书馆"
   ClientHeight    =   3975
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   5580
   Icon            =   "about.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3975
   ScaleWidth      =   5580
   StartUpPosition =   2  '屏幕中心
   Begin VB.Frame Frame2 
      BorderStyle     =   0  'None
      Height          =   3615
      Left            =   0
      TabIndex        =   3
      Top             =   360
      Visible         =   0   'False
      Width           =   5295
      Begin VB.TextBox Text1 
         BackColor       =   &H8000000F&
         Height          =   3495
         Left            =   120
         MultiLine       =   -1  'True
         ScrollBars      =   2  'Vertical
         TabIndex        =   10
         Text            =   "about.frx":0442
         Top             =   0
         Width           =   5175
      End
   End
   Begin VB.Frame Frame1 
      BorderStyle     =   0  'None
      Height          =   3255
      Left            =   0
      TabIndex        =   0
      Top             =   480
      Width           =   5175
      Begin VB.PictureBox Picture1 
         Height          =   3255
         Left            =   240
         ScaleHeight     =   3195
         ScaleWidth      =   4875
         TabIndex        =   4
         Top             =   0
         Width           =   4935
         Begin VB.Label Label7 
            Caption         =   "后台数据库:Microsoft Access"
            Height          =   255
            Left            =   840
            TabIndex        =   9
            Top             =   2640
            Width           =   2655
         End
         Begin VB.Label Label6 
            Caption         =   "设计平台:Microsoft Visual Basic 6"
            Height          =   255
            Left            =   840
            TabIndex        =   8
            Top             =   2160
            Width           =   3255
         End
         Begin VB.Label Label3 
            Caption         =   "虚  拟  图  书  馆"
            BeginProperty Font 
               Name            =   "宋体"
               Size            =   15.75
               Charset         =   134
               Weight          =   400
               Underline       =   0   'False
               Italic          =   0   'False
               Strikethrough   =   0   'False
            EndProperty
            ForeColor       =   &H00FF0000&
            Height          =   375
            Left            =   840
            TabIndex        =   7
            Top             =   240
            Width           =   3015
         End
         Begin VB.Label Label4 
            Caption         =   "设计者:姜慧梅"
            Height          =   375
            Left            =   840
            TabIndex        =   6
            Top             =   960
            Width           =   2775
         End
         Begin VB.Label Label5 
            Caption         =   "设计日期:2004年5月"
            Height          =   255
            Left            =   840
            TabIndex        =   5
            Top             =   1560
            Width           =   1815
         End
      End
   End
   Begin VB.Label Label2 
      Caption         =   "帮  助"
      Height          =   255
      Left            =   3120
      TabIndex        =   2
      Top             =   120
      Width           =   615
   End
   Begin VB.Label Label1 
      Caption         =   "关  于"
      Height          =   255
      Left            =   900
      TabIndex        =   1
      Top             =   120
      Width           =   615
   End
End
Attribute VB_Name = "about"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False


Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label1.ForeColor = &H80000012
Label2.ForeColor = &H80000012
End Sub

Private Sub Label1_Click()
Frame1.Visible = True
Frame1.Enabled = True
Frame2.Visible = False
Frame2.Enabled = False
End Sub

Private Sub Label1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label1.ForeColor = &HFF0000

End Sub

Private Sub Label2_Click()
Frame1.Visible = False
Frame1.Enabled = False
Frame2.Visible = True
Frame2.Enabled = True
End Sub

Private Sub Label2_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label2.ForeColor = &HFF0000
End Sub

⌨️ 快捷键说明

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