G
Guest
While using the DataView.RowFilter, if the RowFilter is set to an integer
value, say:
c#
MyValue = 123;
dataview.RowFilter = "MyField = " + MyValue;
vb
MyValue = 123
DV.RowFilter = "MyField = " + MyValue
Any of the preceding code throws a Missing operand after '=' operator error.
What is the deal?
value, say:
c#
MyValue = 123;
dataview.RowFilter = "MyField = " + MyValue;
vb
MyValue = 123
DV.RowFilter = "MyField = " + MyValue
Any of the preceding code throws a Missing operand after '=' operator error.
What is the deal?