Hello I am trying to display a form that shows the progress of the queries performed in this onclick event:
Private Sub Command125_Click()
'***************Statement Covers Period 104.03*****************
Dim countOfDays As Integer
Dim lngRed As Long
lngRed = RGB(255, 0, 0)
countOfDays = DateDiff("d", Me.admit_date, Me.from_date)
If countOfDays > 3 Then
Me.from_date.ForeColor = lngRed
Me.Label126.Visible = True
'Select all lines on IS that contain a DOS 3 days prior
'to the date of admission and enter reason code 104.03
If FileExists("M:\A_Audit\Client_" & [Forms]![frmClients]![CLIENT_ID] & "\Client_" & [Forms]![frmClients]![CLIENT_ID] & ".xlsx") Then
DoCmd.SetWarnings (False)
DoCmd.OpenQuery ("qryErrorCode104-03")
DoCmd.SetWarnings (True)
Else
MsgBox "Please upload Itemized Statement to identify more than 3 days" & _
"discrepancy between statement from date and admission date."
End If
End If
'***************Diagnosis code incorrect for patients age 104.07*****************
Dim Count As Integer
DoCmd.SetWarnings (False)
DoCmd.OpenQuery ("qryErrorCode104-07 -1")
Count = DCount("*", "qryErrorCode104-07 -2")
If Count > 0 Then
Me.Label123.Visible = True
End If
DoCmd.DeleteObject acTable, "tmp10407"
DoCmd.SetWarnings (True)
'***************Diagnosis code incorrect for patients sex 104.08*****************
DoCmd.SetWarnings (False)
DoCmd.OpenQuery ("qryErrorCode104-08 -1")
Count = DCount("*", "qryErrorCode104-08 -2")
If Count > 0 Then
Me.Label124.Visible = True
End If
DoCmd.DeleteObject acTable, "tmp10408"
DoCmd.SetWarnings (True)
End Sub
I have tried using the ActiveXControl Microsoft ProgressBar Control, version 6.0 with no luck. When I click the button to run code the progressbar doesnt move. Any help would be greatly appreciated. Thank you in advance.