This SQL-statement works in ACCESS 2000 and not in VB 6.0? What's wrong with it?
txtZoek.Text = "*" & txtZoek.Text & "*"
With rsZoekAuteurs
.ActiveConnection = cn
.CursorLocation = adUseClient
.CursorType = adOpenStatic
.LockType = adLockReadOnly
.Open "Select Bestanden.Bestandsnummer, & _
Bestanden.Bestandsnaam, Bestanden.Soort, & _
Bestanden.Omschrijving, Bestanden.Auteurs, & _
Bestanden.[Datum Archivering] from Bestanden & _
where Bestanden.Auteurs like '" & txtZoek.Text & "'"
End With
Set Adodc1.Recordset = rsZoekAuteurs
txtZoek.Text = "*" & txtZoek.Text & "*"
With rsZoekAuteurs
.ActiveConnection = cn
.CursorLocation = adUseClient
.CursorType = adOpenStatic
.LockType = adLockReadOnly
.Open "Select Bestanden.Bestandsnummer, & _
Bestanden.Bestandsnaam, Bestanden.Soort, & _
Bestanden.Omschrijving, Bestanden.Auteurs, & _
Bestanden.[Datum Archivering] from Bestanden & _
where Bestanden.Auteurs like '" & txtZoek.Text & "'"
End With
Set Adodc1.Recordset = rsZoekAuteurs