frmProg.frm
上传用户:djzm888
上传日期:2013-02-15
资源大小:867k
文件大小:1k
源码类别:

其他数据库

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.3#0"; "COMCTL32.OCX"
  3. Begin VB.Form frmProg 
  4.    BackColor       =   &H00FFC0C0&
  5.    BorderStyle     =   3  'Fixed Dialog
  6.    ClientHeight    =   960
  7.    ClientLeft      =   45
  8.    ClientTop       =   45
  9.    ClientWidth     =   5310
  10.    ClipControls    =   0   'False
  11.    ControlBox      =   0   'False
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   960
  16.    ScaleWidth      =   5310
  17.    ShowInTaskbar   =   0   'False
  18.    StartUpPosition =   2  '屏幕中心
  19.    Begin ComctlLib.ProgressBar ProgressBar1 
  20.       Height          =   255
  21.       Left            =   135
  22.       TabIndex        =   1
  23.       Top             =   420
  24.       Width           =   5040
  25.       _ExtentX        =   8890
  26.       _ExtentY        =   450
  27.       _Version        =   327682
  28.       Appearance      =   1
  29.    End
  30.    Begin VB.Label Label1 
  31.       AutoSize        =   -1  'True
  32.       BackColor       =   &H00FFC0C0&
  33.       Caption         =   "数据采集进行中,请稍候..."
  34.       Height          =   180
  35.       Left            =   315
  36.       TabIndex        =   0
  37.       Top             =   150
  38.       Width           =   2160
  39.    End
  40. End
  41. Attribute VB_Name = "frmProg"
  42. Attribute VB_GlobalNameSpace = False
  43. Attribute VB_Creatable = False
  44. Attribute VB_PredeclaredId = True
  45. Attribute VB_Exposed = False
  46. Option Explicit
  47. Private Sub Form_Load()
  48.     ProgressBar1.Value = 0
  49. End Sub