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

📄 frmsplash.frm

📁 一个功能齐全的图书馆管理系统 可适用与中小学的图书馆的管理
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmSplash 
   BorderStyle     =   3  'Fixed Dialog
   ClientHeight    =   4260
   ClientLeft      =   4320
   ClientTop       =   3495
   ClientWidth     =   7380
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   Icon            =   "frmSplash.frx":0000
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   4260
   ScaleWidth      =   7380
   ShowInTaskbar   =   0   'False
   Begin VB.Timer Timer1 
      Interval        =   5000
      Left            =   360
      Top             =   3960
   End
   Begin VB.Frame Frame1 
      Height          =   4410
      Left            =   0
      TabIndex        =   0
      Top             =   -120
      Width           =   7440
      Begin VB.Label lblProductName 
         Caption         =   " 开发环境: Visual Basic  6.0"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   12
            Charset         =   134
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   495
         Left            =   2280
         TabIndex        =   8
         Top             =   1680
         Width           =   3375
      End
      Begin VB.Image imgLogo 
         Height          =   2385
         Left            =   240
         Picture         =   "frmSplash.frx":000C
         Stretch         =   -1  'True
         Top             =   795
         Width           =   1815
      End
      Begin VB.Label lblCopyright 
         Caption         =   "版权所有@1211工作室"
         Height          =   255
         Left            =   3120
         TabIndex        =   3
         Top             =   2880
         Width           =   2415
      End
      Begin VB.Label lblWarning 
         Caption         =   "本系统为试用版本    请不要用于商业使用     仅用于学习和交流使用  欢迎试用"
         Height          =   195
         Left            =   150
         TabIndex        =   2
         Top             =   3660
         Width           =   6765
      End
      Begin VB.Label lblVersion 
         Alignment       =   1  'Right Justify
         AutoSize        =   -1  'True
         Caption         =   "1.0"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   12
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   240
         Left            =   6105
         TabIndex        =   4
         Top             =   720
         Width           =   405
      End
      Begin VB.Label lblPlatform 
         Alignment       =   1  'Right Justify
         AutoSize        =   -1  'True
         Caption         =   "数据库环境:Microsoft Access"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   12
            Charset         =   134
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   240
         Left            =   2400
         TabIndex        =   5
         Top             =   2280
         Width           =   3240
      End
      Begin VB.Label lblLicenseTo 
         Alignment       =   2  'Center
         Caption         =   "     学校图书馆管理系统      "
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   12
            Charset         =   134
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   255
         Left            =   120
         TabIndex        =   1
         Top             =   240
         Width           =   6855
      End
      Begin VB.Label lblCompanyProduct 
         AutoSize        =   -1  'True
         Caption         =   "运行平台:Windows 98/2000/xp"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   12
            Charset         =   134
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   240
         Left            =   2400
         TabIndex        =   6
         Top             =   1080
         Width           =   3240
      End
   End
   Begin VB.Label Label1 
      Caption         =   "Label1"
      Height          =   495
      Left            =   3120
      TabIndex        =   7
      Top             =   1920
      Width           =   1215
   End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Option Explicit

Private Sub Form_KeyPress(KeyAscii As Integer)
    Unload Me
    frmLogin.Show
End Sub

Private Sub Frame1_Click()
    Unload Me
    frmLogin.Show
End Sub

Private Sub imgLogo_Click()
Unload Me
    frmLogin.Show
End Sub

Private Sub lblCompanyProduct_Click()
Unload Me
    frmLogin.Show
End Sub

Private Sub lblCopyright_Click()
Unload Me
    frmLogin.Show
End Sub

Private Sub lblLicenseTo_Click()
Unload Me
    frmLogin.Show
End Sub

Private Sub lblPlatform_Click()
Unload Me
    frmLogin.Show
End Sub

Private Sub lblProductName_Click()
Unload Me
    frmLogin.Show
End Sub

Private Sub lblVersion_Click()
Unload Me
    frmLogin.Show
End Sub

Private Sub lblWarning_Click()
Unload Me
    frmLogin.Show
End Sub

Private Sub Timer1_Timer()
If Timer1.Interval = 5000 Then
Unload Me
End If
frmLogin.Show
End Sub

⌨️ 快捷键说明

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