jdt4.frm

来自「关于图书销售管理」· FRM 代码 · 共 62 行

FRM
62
字号
VERSION 5.00
Begin VB.Form jdt4 
   Caption         =   "请稍候......"
   ClientHeight    =   585
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4530
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MDIChild        =   -1  'True
   MinButton       =   0   'False
   ScaleHeight     =   585
   ScaleWidth      =   4530
   Begin VB.Timer Timer1 
      Interval        =   50
      Left            =   2640
      Top             =   120
   End
   Begin VB.PictureBox ProgressBar1 
      Height          =   375
      Left            =   120
      ScaleHeight     =   315
      ScaleWidth      =   4275
      TabIndex        =   0
      Top             =   120
      Width           =   4335
   End
End
Attribute VB_Name = "jdt4"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Activate()
Timer1.Enabled = True
'ProgressBar1.Value = 0

End Sub

Private Sub Form_Load()
Timer1.Enabled = True
'ProgressBar1.Value = 0
'For i = 1 To 100 Step 10
   'ProgressBar1.Value = i
'Next
End Sub

Private Sub Timer1_Timer()
  
'ProgressBar1.Value = ProgressBar1 + 10
'If ProgressBar1.Value = 100 Then
     
       'Unload Me
       'Timer1.Enabled = False
       'MsgBox "数据已经成功恢复。", vbInformation, "提示"
       'dhdcl1.Show
 'End If


End Sub

⌨️ 快捷键说明

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