load_form.frm

来自「一个图书馆的VB做的mis系统」· FRM 代码 · 共 89 行

FRM
89
字号
VERSION 5.00
Begin VB.Form load_form 
   BackColor       =   &H00FFFFFF&
   BorderStyle     =   3  'Fixed Dialog
   ClientHeight    =   4965
   ClientLeft      =   255
   ClientTop       =   1410
   ClientWidth     =   7440
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Picture         =   "load_form.frx":0000
   ScaleHeight     =   4965
   ScaleWidth      =   7440
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.Timer Timer_show_log 
      Interval        =   3000
      Left            =   6840
      Top             =   1800
   End
   Begin VB.Timer Timer_load_bar 
      Interval        =   500
      Left            =   6840
      Top             =   240
   End
   Begin VB.Label Label1 
      Appearance      =   0  'Flat
      BackColor       =   &H80000005&
      BackStyle       =   0  'Transparent
      Caption         =   "Loading..."
      BeginProperty Font 
         Name            =   "Arial Black"
         Size            =   21.75
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   -1  'True
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H80000009&
      Height          =   615
      Left            =   4320
      TabIndex        =   0
      Top             =   1800
      Width           =   2415
   End
End
Attribute VB_Name = "load_form"
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
End Sub

Private Sub Frame1_Click()
    Unload Me
End Sub



Private Sub Timer_load_bar_Timer()


Label1.Visible = Not Label1.Visible


End Sub

Private Sub Timer_show_log_Timer()

load_form.Hide

login_form.Show

Timer_show_log.Enabled = False

Timer_load_bar.Enabled = False

End Sub

⌨️ 快捷键说明

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