frmzh.frm

来自「图书管理系统」· FRM 代码 · 共 49 行

FRM
49
字号
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmwelcome 
   Caption         =   "Form1"
   ClientHeight    =   4095
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   5505
   LinkTopic       =   "Form1"
   Picture         =   "frmzh.frx":0000
   ScaleHeight     =   4095
   ScaleWidth      =   5505
   StartUpPosition =   2  '屏幕中心
   Begin VB.Timer Timer1 
      Interval        =   150
      Left            =   120
      Top             =   2880
   End
   Begin MSComctlLib.ProgressBar ProgressBar1 
      Height          =   255
      Left            =   360
      TabIndex        =   0
      Top             =   3240
      Width           =   4815
      _ExtentX        =   8493
      _ExtentY        =   450
      _Version        =   393216
      BorderStyle     =   1
      Appearance      =   0
   End
End
Attribute VB_Name = "frmwelcome"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Timer1_Timer()

If ProgressBar1.Value <= ProgressBar1.Max - 5 Then
ProgressBar1.Value = ProgressBar1.Value + 8
Else
frmMain.Show
Unload Me
End If

End Sub


⌨️ 快捷键说明

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