Sub AfficherFenetreConsultation(table, field)
Dim Enregistrements As ADODB.Recordset
Dim ConnectionADO As String
Dim InstructionSQL As String
Dim critere As String
With fmConsultation
.ListBox1.Clear
critere = ''
' Crée la chaine de connexion
ConnectionADO = 'Provider=Microsoft.Jet.OLEDB.4.0;' & 'Data Source= ' & ActiveWorkbook.Path & '\\' & 'Docubase.mdb'
' Crée l'instruction SQL
InstructionSQL = 'SELECT Contacts.* FROM Contacts ' & 'WHERE (((Contacts.Trigramme) Like '%' & critere & '%'))'
' Crée l'objet Recordset et exécute la requête
Set Enregistrements = New ADODB.Recordset
Enregistrements.Open InstructionSQL, ConnectionADO, adLockReadOnly, adLockReadOnly, adCmdText
' On s'assure qu'il y a des enregistrements à récupérer ...
If Not Enregistrements.EOF Then
Do While Not Enregistrements.EOF
.ListBox1.AddItem Enregistrements.Fields(field)
Enregistrements.MoveNext
Loop
End If
' Ferme le jeu d'enregistrements s'il est toujours ouvert ...
If CBool(Enregistrements.State And adStateOpen) Then Enregistrements.Close
Set Enregistrements = Nothing
.Caption = 'Table des ' & UCase(table)
.Show
End With
end sub