PDA

Click to See Complete Forum and Search --> : ADO find method


waheed
Jul 28th, 2000, 05:48 AM
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

sultan
Jul 28th, 2000, 06:05 AM
Hi

Try this:

adoRec.Find "SupplierName='" & V_supplierName &"'"

waheed
Jul 28th, 2000, 07:22 AM
thanks sultan!!!!.