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

📄 splash.frm

📁 学籍管理系统,管理员登陆可以删除修改学生记录
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmSplash 
   BorderStyle     =   3  'Fixed Dialog
   ClientHeight    =   5475
   ClientLeft      =   255
   ClientTop       =   1410
   ClientWidth     =   7530
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   Icon            =   "Splash.frx":0000
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   5475
   ScaleWidth      =   7530
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.Timer Timer1 
      Left            =   5040
      Top             =   4560
   End
   Begin VB.PictureBox Picture1 
      AutoSize        =   -1  'True
      Height          =   9060
      Left            =   -600
      Picture         =   "Splash.frx":000C
      ScaleHeight     =   9000
      ScaleWidth      =   12000
      TabIndex        =   0
      ToolTipText     =   "222"
      Top             =   -960
      Width           =   12060
      Begin VB.Label Label3 
         BackStyle       =   0  'Transparent
         Caption         =   "欢迎登陆VB学生成绩管理系统"
         BeginProperty Font 
            Name            =   "楷体_GB2312"
            Size            =   9
            Charset         =   134
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H0000FFFF&
         Height          =   495
         Left            =   1440
         TabIndex        =   3
         Top             =   3360
         Width           =   5415
      End
      Begin VB.Label Label2 
         BackStyle       =   0  'Transparent
         Caption         =   "登陆"
         BeginProperty Font 
            Name            =   "隶书"
            Size            =   15.75
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00FF8080&
         Height          =   495
         Left            =   2280
         TabIndex        =   2
         Top             =   4560
         Width           =   1095
      End
      Begin VB.Image Image1 
         Height          =   5700
         Left            =   4800
         Picture         =   "Splash.frx":B8F9
         Top             =   1800
         Width           =   4500
      End
      Begin VB.Label Label1 
         BackColor       =   &H00FFC0FF&
         BackStyle       =   0  'Transparent
         Caption         =   "VB学生成绩管理系统"
         BeginProperty Font 
            Name            =   "楷体_GB2312"
            Size            =   36
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00FFFF00&
         Height          =   975
         Left            =   1080
         TabIndex        =   1
         Top             =   1200
         Width           =   6855
         WordWrap        =   -1  'True
      End
   End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim i As Integer

Const sTemp = "欢迎登陆VB学生成绩管理系统!"

Private Sub Form_Load()
Label3.Caption = sTemp
Label3.Font.Size = 15
Timer1.Interval = 100
i = 1
End Sub

Private Sub Timer1_Timer()
If Label3.Caption = "" Then
i = 1
Label3.Caption = sTemp
End If
Label3.Caption = Mid(sTemp, i, Len(sTemp))
i = i + 1
End Sub

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

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

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

⌨️ 快捷键说明

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