Dim i As Integer Private Sub Form_Load() Timer1.Enabled = True '2个垂直显示的进度条的位置 With ccrpProgressBar8 .Left = 5280 .Top = 360 .Height = 3800 .Width = 396 End With With ccrpProgressBar9 .Left = 6200 .Top = 360 .Height = 3800 .Width = 396 End With End Sub
Private Sub Timer1_Timer() If i = 100 Then End End If
ccrpProgressBar1.Value = i ccrpProgressBar2.Value = i ccrpProgressBar3.Value = i ccrpProgressBar4.Value = i ccrpProgressBar5.Value = i ccrpProgressBar6.Value = i ccrpProgressBar7.Value = i ccrpProgressBar8.Value = i ccrpProgressBar9.Value = i