Showing posts with label DataTable. Show all posts
Showing posts with label DataTable. Show all posts

Monday, April 18, 2011

Loop through a DataSet

        Dim dr As DataRow
        Dim dt As DataTable
        dt = DataSetName.Tables(0)
        For Each dr In dt.Rows
           something = dr("FeildName")
        Next