How do I write a filter for a DataTable so I can get the row I want....here's what I am doing:
Dim Data() As DataRow
Dim strFilter As String
strFilter = "CC_NBR = " & intCC_NBR.ToString & " AND BI_ACCT = 0"
Data= m_Dataset.Tables("BI_PERSONAL").Select(strFilter)
And then it excepts




Reply With Quote
