⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jdt2.frm

📁 关于图书销售管理
💻 FRM
字号:
VERSION 5.00
Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.3#0"; "COMCTL32.OCX"
Begin VB.Form jdt2 
   Caption         =   "请稍候......"
   ClientHeight    =   585
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4530
   ControlBox      =   0   'False
   Icon            =   "jdt2.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MDIChild        =   -1  'True
   MinButton       =   0   'False
   ScaleHeight     =   585
   ScaleWidth      =   4530
   Begin VB.Timer Timer1 
      Interval        =   50
      Left            =   1800
      Top             =   120
   End
   Begin ComctlLib.ProgressBar ProgressBar1 
      Height          =   375
      Left            =   120
      TabIndex        =   0
      Top             =   120
      Width           =   4335
      _ExtentX        =   7646
      _ExtentY        =   661
      _Version        =   327682
      Appearance      =   1
   End
End
Attribute VB_Name = "jdt2"
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 "工资已经成功发放。", vbExclamation, "提示"
       'dhdcl1.Show
 End If


End Sub

⌨️ 快捷键说明

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