CLRBOY Posted February 14, 2005 Posted February 14, 2005 Greetings, how do I filter the rows in the same dataview with more then one variable to filter ? when I do this one after another it doesn't work.... :( myDataView.RowFilter = "ID = '" + hmnID + "'"; myDataView.RowFilter = "the_name = '" + the_name + "'"; CLRBOY Quote
Optikal Posted February 14, 2005 Posted February 14, 2005 myDataView.RowFilter = "ID = '" + hmnID + "' AND the_name = '" + the_name + "'"; Quote
CLRBOY Posted February 17, 2005 Author Posted February 17, 2005 myDataView.RowFilter = "ID = '" + hmnID + "' AND the_name = '" + the_name + "'"; thanks!!!! :D :cool: Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.