Sub Progress_bar1()
'Bar1
frmProgressForm.FrameProgress.Caption = "5% Completed"
frmProgressForm.lblProgress.Width = 12.5
frmProgressForm.Show vbModeless
frmProgressForm.Repaint
DoEvents
End Sub
Sub Progress_bar2()
'Bar2
frmProgressForm.FrameProgress.Caption = "10% Completed"
frmProgressForm.lblProgress.Width = 25
Application.Wait (Now + TimeValue("0:00:01"))
DoEvents
End Sub
Sub Progress_bar3()
'Bar3
frmProgressForm.FrameProgress.Caption = "20% Completed"
frmProgressForm.lblProgress.Width = 50
Application.Wait (Now + TimeValue("0:00:01"))
DoEvents
End Sub
Sub Progress_bar4()
'Bar4
frmProgressForm.FrameProgress.Caption = "30% Completed"
frmProgressForm.lblProgress.Width = 75
Application.Wait (Now + TimeValue("0:00:01"))
DoEvents
End Sub
Sub Progress_bar5()
'Bar5
frmProgressForm.FrameProgress.Caption = "40% Completed"
frmProgressForm.lblProgress.Width = 100
Application.Wait (Now + TimeValue("0:00:01"))
DoEvents
End Sub
Sub Progress_bar6()
'Bar6
frmProgressForm.FrameProgress.Caption = "50% Completed"
frmProgressForm.lblProgress.Width = 125
Application.Wait (Now + TimeValue("0:00:01"))
DoEvents
End Sub
Sub Progress_bar7()
'Bar7
frmProgressForm.FrameProgress.Caption = "60% Completed"
frmProgressForm.lblProgress.Width = 150
Application.Wait (Now + TimeValue("0:00:01"))
DoEvents
End Sub
Sub Progress_bar8()
'Bar8
frmProgressForm.FrameProgress.Caption = "70% Completed"
frmProgressForm.lblProgress.Width = 175
Application.Wait (Now + TimeValue("0:00:01"))
DoEvents
End Sub
Sub Progress_bar9()
'Bar9
frmProgressForm.FrameProgress.Caption = "80% Completed"
frmProgressForm.lblProgress.Width = 200
Application.Wait (Now + TimeValue("0:00:01"))
DoEvents
End Sub
Sub Progress_bar10()
'Bar10
frmProgressForm.FrameProgress.Caption = "90% Completed"
frmProgressForm.lblProgress.Width = 225
Application.Wait (Now + TimeValue("0:00:01"))
DoEvents
End Sub
Sub Progress_bar11()
'Bar11
frmProgressForm.FrameProgress.Caption = "100% Completed"
frmProgressForm.lblProgress.Width = 250
Application.Wait (Now + TimeValue("0:00:01"))
DoEvents
frmProgressForm.Hide
End Sub