can anyone help plz
Im trying to use the ADO find method using a variable as the
saerch criteria
e.g
V_supplierName= "Disxon"
adoRec.Find ("SupplierName=" & V_supplierName)
but it does'nt like it?
any ideas thanxs
Printable View
can anyone help plz
Im trying to use the ADO find method using a variable as the
saerch criteria
e.g
V_supplierName= "Disxon"
adoRec.Find ("SupplierName=" & V_supplierName)
but it does'nt like it?
any ideas thanxs
Hi
Try this:
adoRec.Find "SupplierName='" & V_supplierName &"'"
thanks sultan!!!!.