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

📄 系统提示.frm

📁 功能强大的学生信息管理系统 用户:admin 密码:admin学生信息管理系统是典型的信息管理系统 (MIS)
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frm_Splash 
   BorderStyle     =   3  'Fixed Dialog
   ClientHeight    =   4320
   ClientLeft      =   255
   ClientTop       =   1410
   ClientWidth     =   7305
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   Icon            =   "系统提示.frx":0000
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   4320
   ScaleWidth      =   7305
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.Frame Frame1 
      Height          =   4050
      Left            =   120
      TabIndex        =   0
      Top             =   120
      Width           =   7080
      Begin VB.Timer Timer2 
         Interval        =   8000
         Left            =   6600
         Top             =   3480
      End
      Begin VB.Timer Timer1 
         Interval        =   1
         Left            =   6120
         Top             =   3480
      End
      Begin VB.Label Label8 
         Caption         =   "按任意键继续..."
         Height          =   255
         Left            =   5280
         TabIndex        =   11
         Top             =   3600
         Width           =   1575
      End
      Begin VB.Label Label7 
         Caption         =   "邹永康老师"
         Height          =   255
         Left            =   4200
         TabIndex        =   10
         Top             =   3000
         Width           =   1575
      End
      Begin VB.Label Label6 
         Caption         =   "指导老师:"
         Height          =   255
         Left            =   3120
         TabIndex        =   9
         Top             =   3000
         Width           =   1095
      End
      Begin VB.Label Label5 
         Caption         =   "毕业设计"
         Height          =   255
         Left            =   4200
         TabIndex        =   8
         Top             =   2640
         Width           =   2055
      End
      Begin VB.Label Label4 
         Caption         =   "开发者:"
         Height          =   255
         Left            =   3240
         TabIndex        =   7
         Top             =   2640
         Width           =   1095
      End
      Begin VB.Label Label3 
         Caption         =   "游先涛"
         Height          =   255
         Left            =   4200
         TabIndex        =   6
         Top             =   2280
         Width           =   1815
      End
      Begin VB.Label Label2 
         BackStyle       =   0  'Transparent
         BeginProperty Font 
            Name            =   "楷体_GB2312"
            Size            =   21.75
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H008080FF&
         Height          =   615
         Left            =   -1200
         TabIndex        =   5
         Top             =   120
         Width           =   1215
      End
      Begin VB.Label Label1 
         BackStyle       =   0  'Transparent
         Caption         =   "朱沱镇二郎山初中欢迎您"
         BeginProperty Font 
            Name            =   "楷体_GB2312"
            Size            =   21.75
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H008080FF&
         Height          =   495
         Left            =   840
         TabIndex        =   4
         Top             =   240
         Width           =   5175
      End
      Begin VB.Image imgLogo 
         Height          =   2385
         Left            =   360
         Picture         =   "系统提示.frx":1042
         Stretch         =   -1  'True
         Top             =   960
         Width           =   1815
      End
      Begin VB.Label lblCopyright 
         Caption         =   "版权所有:"
         Height          =   255
         Left            =   3120
         TabIndex        =   2
         Top             =   2280
         Width           =   1095
      End
      Begin VB.Label lblWarning 
         Caption         =   "警告:未经受权,本软件不得拷贝,不得...."
         Height          =   195
         Left            =   120
         TabIndex        =   1
         Top             =   3600
         Width           =   6765
      End
      Begin VB.Label lblCompanyProduct 
         AutoSize        =   -1  'True
         Caption         =   "学生信息管理系统"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   18
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   360
         Left            =   3120
         TabIndex        =   3
         Top             =   1440
         Width           =   3000
      End
   End
End
Attribute VB_Name = "frm_Splash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public Bool As Boolean
Option Explicit

Private Sub Form_KeyPress(KeyAscii As Integer)
    Bool = False
    Frm_Login.Show
    If Bool = True Then
        Unload Frm_Login
    End If
    Unload Me
End Sub

Private Sub Form_Load()
    Label2.Left = Label1.Left + frm_Splash.Width
End Sub

Private Sub Frame1_Click()
    Bool = False
    Frm_Login.Show
    If Bool = True Then
        Unload Frm_Login
    End If
    Unload Me
End Sub

Private Sub Timer1_Timer()
Label1.Left = Label1.Left - 10
    Label2.Left = Label2.Left - 10
End Sub

Private Sub Timer2_Timer()
Bool = False
    Frm_Login.Show
    If Bool = True Then
        Unload Frm_Login
    End If
    Unload Me
End Sub

⌨️ 快捷键说明

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