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

📄 form1.frm

📁 Attendance Report System of student in Visual Basic and Oracle AS Backend
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmSplash 
   Caption         =   "ATTANDANCE REPORT SYSTEM"
   ClientHeight    =   6180
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   8490
   LinkTopic       =   "Form1"
   ScaleHeight     =   6180
   ScaleWidth      =   8490
   StartUpPosition =   3  'Windows Default
   Begin VB.PictureBox Picture23 
      AutoSize        =   -1  'True
      BackColor       =   &H00FFFFFF&
      BorderStyle     =   0  'None
      Height          =   645
      Left            =   4440
      Picture         =   "FORM1.frx":0000
      ScaleHeight     =   645
      ScaleWidth      =   2160
      TabIndex        =   1
      Top             =   120
      Width           =   2160
   End
   Begin VB.Timer TimerPROGRESSBAR 
      Interval        =   50
      Left            =   120
      Top             =   5400
   End
   Begin VB.Shape Shape1 
      Height          =   255
      Left            =   960
      Top             =   3720
      Width           =   6135
   End
   Begin VB.Label LBLDISPLAY 
      BackStyle       =   0  'Transparent
      Caption         =   "Loading...."
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00B39A26&
      Height          =   1215
      Left            =   5040
      TabIndex        =   0
      Top             =   4080
      Width           =   2055
   End
   Begin VB.Image imgProgressBar 
      Appearance      =   0  'Flat
      Height          =   255
      Left            =   960
      Picture         =   "FORM1.frx":48D2
      Stretch         =   -1  'True
      Top             =   3720
      Visible         =   0   'False
      Width           =   6150
   End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Timer1_Timer()

End Sub

Private Sub Form_Load()
'frmSplash.Show
    
    'lblDisplay.Caption = "Loading please wait..."
    imgProgressBar.Width = 0
    imgProgressBar.Visible = True
    TimerPROGRESSBAR.Enabled = True
End Sub

Private Sub TimerPROGRESSBAR_Timer()
If imgProgressBar.Width >= 6150 Then
        TimerPROGRESSBAR.Enabled = False
        imgProgressBar.Width = 6150
        Unload frmSplash
    Else
        imgProgressBar.Width = imgProgressBar.Width + TimerPROGRESSBAR.Interval
        
        Select Case imgProgressBar.Width
        Case Is = 515
            LBLDISPLAY.Caption = "Loading...Attandance Report System..."
        Case Is = 2015
            LBLDISPLAY.Caption = "Configuring Tool..."
        Case Is = 2515
            LBLDISPLAY.Caption = "Establishing Database Connection..."
        Case Is = 5015
            LBLDISPLAY.Caption = "Please Wait....."
        Case Is = 6115
            imgProgressBar.Width = 6150
             Unload frmSplash
              End Select
    End If
End Sub

⌨️ 快捷键说明

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