perdón me equivoque esque estaba viendo tu código y se barrio el tornillo
Código [Seleccionar]
private sub Text1_Change()
Data1.DatabaseName = App.Path & "\lib.mdb"
Data1.RecordSource = "SELECT * FROM tabla2 WHERE Campo LIKE '" & text1.text & "*' ORDER BY Campo ASC;"
data1.refresh
While Not data1.Recordset.Eof
list1.additem trim(tb.Field(0))
data1.recordset.MoveNext
wend
end sub