-
Notifications
You must be signed in to change notification settings - Fork 0
TableSinlgeVB
sindizzy edited this page Dec 23, 2020
·
3 revisions
Imports DotSpatial.Data
Imports System.Windows.Forms
Private Sub button1_Click(sender As Object, e As EventArgs)
Dim fs As New FeatureSet()
fs.FillAttributes()
fs.Open("C:\Temp\roads.shp")
Dim dt As DataTable = fs.DataTable
For row As Integer = 0 To dt.Rows.Count - 1
Dim val As Object = dtOriginal.Rows(row)("LENGTH")
Next
End Sub