Here is the code:
Private Sub Command0_Click()
On Error GoTo Err_Command0_Click
DoCmd.SetWarnings False
Dim stDocName As String
stDocName = "C1"
DoCmd.OpenQuery stDocName, acViewNormal
Me.Lbl1.Visible = True
Me.Lbl2.Visible = True
Me.PROGRESS.Caption = "20%"
DoEvents
Me.Lbl3.Visible = True
Me.Lbl4.Visible = True
Me.PROGRESS.Caption = "40%"
DoEvents
Me.Lbl5.Visible = True
Me.Lbl6.Visible = True
Me.PROGRESS.Caption = "60%"
DoEvents
Me.Lbl7.Visible = True
Me.Lbl8.Visible = True
Me.PROGRESS.Caption = "80%"
DoEvents
Me.Lbl9.Visible = True
Me.Lbl10.Visible = True
Me.PROGRESS.Caption = "100%"
DoEvents
DoCmd.SetWarnings True
Exit_Command0_Click:
Exit Sub
Err_Command0_Click:
MsgBox Err.Description
Resume Exit_Command0_Click
End Sub