Private Sub Form_Load()
Dim SQL As String, NbEnr As Long
Dim ctl As Control
For Each ctl In Me.Controls
Select Case Left(ctl.Name, 3)
Case "chk"
ctl.Value = -1
Case "lbl"
ctl.Caption = "- * - * -"
Case "txt"
ctl.Visible = False
ctl.Value = ""
Case "cmb"
ctl.Visible = False
End Select
Next ctl
SQL = "SELECT ID, Disposition, [SDRL Item Number], [Document Number], [Document Desc] FROM Import_SDRL;"
NbEnr = DCount("*", "Import_SDRL")
Me.lblStats__.Caption = NbEnr & " / " & NbEnr
Me.lstResults.RowSource = SQL
Me.lstResults.Requery
End Sub