RowFilter with Numeric Values

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How to apply a DataView.RowFilter with numeric values.

I always get exception from the System.Data.SyntaxErrorException:

Syntax error: Missing operand after '=' operator.

Any Ideas would be good

Thanks
 
There's no difference that I know of. Can you show me the code that isn't
working?
 
Hello Ryan,

Here is the code in VB:

Dim DV As New DataView(DS.Tables(0))
DV.RowFilter = "ZipCode=" & ZipCode.Text

ZipCode is a Forms.Label controls and this is a WinForms application.

Also, how do you get to be an MVP
 
Back
Top