I'm using for following. It works great apart from Today, it seems to rerun an old progress bar from where I had issues. It's almost like it doesn't full clear and reload when required. anyone have any ideas?
Code:
Function TotalQuestions() As Integer
TotalQuestions = Application.CountA(shQuestions.Columns(6))
End Function
Code:
'Load Controls with Data
Me.Label2.Width = 361.1 * (m_QID / m_TotalUniqueQuestions)
Me.Label2.Caption = Format((m_QID / m_TotalUniqueQuestions), "0.0%")
Me.lblQID.Caption = m_QID
Me.lblQuestion.Caption = m_Question
Me.LblDesc.Caption = strQInfo(2)