A
alejandro
One question:
i have this string : "blue chip", if i want to filter
all the records with "blue" and "chip" in any position how i must to write
the code ,
i have this code:
Dim vxor as string
Set pes = New adodb.recordset
' were me.search is a textbox with the content of the string
vxor = me.search ' i have try this but dont work
replace (vxor, " ","%")
pes.open "exec buscade @valor='%" & vxor & "%',@opc=1",cn, adopenkeyset,
adlockoptimistic
how i must write to obtain vxor="%blue%chip%"
thanks in advance
alejandro carnero
i have this string : "blue chip", if i want to filter
all the records with "blue" and "chip" in any position how i must to write
the code ,
i have this code:
Dim vxor as string
Set pes = New adodb.recordset
' were me.search is a textbox with the content of the string
vxor = me.search ' i have try this but dont work
replace (vxor, " ","%")
pes.open "exec buscade @valor='%" & vxor & "%',@opc=1",cn, adopenkeyset,
adlockoptimistic
how i must write to obtain vxor="%blue%chip%"
thanks in advance
alejandro carnero