t = txtSearchMo.Text
z = Combo1.Text
Adodc1.Recordset.Filter = "br_name like '" + t + "'" Or "mo like '" + z + "'"
why this code have mismatch error appear?? help me pls
t = txtSearchMo.Text
z = Combo1.Text
Adodc1.Recordset.Filter = "br_name like '" + t + "'" Or "mo like '" + z + "'"
why this code have mismatch error appear?? help me pls
Try using "&" instead of "+".
Adodc1.Recordset.Filter = "br_name LIKE '" & t & "'" _
" OR mo LIKE '" & z & "'"
not working sir..
arguments are wrong type, are out of acceptable range, or are in conflict with one another
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.