J
John Pether
I have a dataset and i want to filter it into a new dataset or reader. I
have the following code below but do not know how to finish it. I want to
inport all rows where the TypeName column = a certain value (premier plus)
Some help would be appreciated
Dim links As New DNSite.LinksDB()
Dim myDS As DataSet
myDS = links.GetLinks(CatID)
' filter dataset for premier plus links
' and bind to the datalist control
Dim pluslinks As New DataSet()
pluslinks.Tables.Add(myDS.Tables("tblLinks").Clone)
pluslinks.Tables(0).ImportRow(myDS.Tables("tblLinks").???
have the following code below but do not know how to finish it. I want to
inport all rows where the TypeName column = a certain value (premier plus)
Some help would be appreciated
Dim links As New DNSite.LinksDB()
Dim myDS As DataSet
myDS = links.GetLinks(CatID)
' filter dataset for premier plus links
' and bind to the datalist control
Dim pluslinks As New DataSet()
pluslinks.Tables.Add(myDS.Tables("tblLinks").Clone)
pluslinks.Tables(0).ImportRow(myDS.Tables("tblLinks").???