G
greifedc
Guest
I am trying to select a datarow that meets 2 criteria (TipType, & Diameter). I can only get it to work with 1 filter string under .select. How can I filter the other criteria?
Dim TipTypesrch As String
Dim diasrch As String
TipTypesrch = "Tooltiptype= " & TipType & ""
diasrch = "Tooldiameter= " & dia & ""
Dim fndrow As DataRow() = ToolsDataSet1.Tables("Tool table").Select(diasrch)
Dim TipTypesrch As String
Dim diasrch As String
TipTypesrch = "Tooltiptype= " & TipType & ""
diasrch = "Tooldiameter= " & dia & ""
Dim fndrow As DataRow() = ToolsDataSet1.Tables("Tool table").Select(diasrch)