I have this line of code which uses a dataview view_1
and I'm trying to filter the datagridview by product_name and its size using the RowFilter
.
Here is the code:
view_1.RowFilter = "product_name = '" + cboProduct.Text + "' AND size = " + cboSize.Text + "";
And when I try to run the application it says Missing operand after '=' operator
.
So what is that missing operand?