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