frmpic.frm

来自「vb6.0 开发的一个 VB小型超市、个体户进销存系统源码」· FRM 代码 · 共 51 行

FRM
51
字号
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmPic 
   BorderStyle     =   0  'None
   Caption         =   "Form1"
   ClientHeight    =   3510
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   5190
   LinkTopic       =   "Form1"
   Picture         =   "frmPic.frx":0000
   ScaleHeight     =   3510
   ScaleWidth      =   5190
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  '所有者中心
   Begin VB.Timer Timer1 
      Interval        =   40
      Left            =   4800
      Top             =   0
   End
   Begin MSComctlLib.ProgressBar ProgressBar1 
      Height          =   360
      Left            =   0
      TabIndex        =   0
      Top             =   3240
      Width           =   5220
      _ExtentX        =   9208
      _ExtentY        =   635
      _Version        =   393216
      BorderStyle     =   1
      Appearance      =   0
      Scrolling       =   1
   End
End
Attribute VB_Name = "frmPic"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim tim As Integer
Private Sub Timer1_Timer()
tim = tim + 2
ProgressBar1.Value = tim
If tim = 100 Then
MDIForm1.Show
Unload Me
End If
End Sub

⌨️ 快捷键说明

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