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

📄 fmloading.frm

📁 采用SQL实现的排课管理系统
💻 FRM
字号:
VERSION 5.00
Begin VB.Form fmloading 
   BackColor       =   &H00E0E0E0&
   BorderStyle     =   0  'None
   Caption         =   "Form4"
   ClientHeight    =   3360
   ClientLeft      =   3330
   ClientTop       =   2625
   ClientWidth     =   4905
   LinkTopic       =   "Form4"
   ScaleHeight     =   3360
   ScaleWidth      =   4905
   ShowInTaskbar   =   0   'False
   Begin VB.Timer Timer1 
      Enabled         =   0   'False
      Interval        =   1000
      Left            =   3240
      Top             =   1800
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "数据初始化中,请等待..."
      ForeColor       =   &H000000FF&
      Height          =   255
      Left            =   1080
      TabIndex        =   3
      Top             =   2760
      Width           =   2175
   End
   Begin VB.Image Image1 
      Height          =   480
      Left            =   360
      Picture         =   "fmloading.frx":0000
      Top             =   480
      Width           =   480
   End
   Begin VB.Label Label2 
      BackColor       =   &H00FF0000&
      BackStyle       =   0  'Transparent
      Caption         =   "排课管理系统 V1.0    "
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   15
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FF0000&
      Height          =   615
      Left            =   1200
      TabIndex        =   2
      Top             =   360
      Width           =   3255
   End
   Begin VB.Label Label3 
      BackStyle       =   0  'Transparent
      Caption         =   "作者:ZeroCool"
      ForeColor       =   &H00C00000&
      Height          =   255
      Left            =   1080
      TabIndex        =   1
      Top             =   2160
      Width           =   1215
   End
   Begin VB.Label Label4 
      BackStyle       =   0  'Transparent
      Caption         =   "(测试版)"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   12
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FF8080&
      Height          =   375
      Left            =   1200
      TabIndex        =   0
      Top             =   1320
      Width           =   2055
   End
   Begin VB.Image ImgBg 
      Height          =   11520
      Left            =   120
      Stretch         =   -1  'True
      Top             =   240
      Width           =   15360
   End
End
Attribute VB_Name = "fmloading"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Form_Load()
Me.MousePointer = 11
Dim X, Y As Integer
ImgBg.Picture = LoadPicture(App.Path + "\back.jpg")


ImgBg.Width = Form1.Width
ImgBg.Height = Form1.Height

X = (Screen.Width - Form1.Width) / 2
Y = (Screen.Height - Form1.Height) / 2
Form1.Left = X
Form1.Top = Y
Timer1.Enabled = True

'
'

End Sub


Private Sub Label2_Click()

End Sub

Private Sub Timer1_Timer()
Unload Me
fmStart.Show
Beep

End Sub

⌨️ 快捷键说明

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