Dim cursor As ICursor Set cursor = table.Search(Nothing, False) Dim row As IRow Set row = cursor.NextRow Do While Not row Is Nothing ' do something Set row = cursor.NextRow Loop
Set pTabCursor = pStTab.Table.update(Nothing, false) Set pRow = pTabCursor.NextRow While Not pRow Is Nothing Set pPoint = New Point pPoint.x = pRow.Value(10) Debug.Print pPoint.x pPoint.y = pRow.Value(11) pPoint.PutCoords pRow.Value(10), pRow.Value(11) pPoint.Project pGCS pRow.Value(12) = pPoint.y pRow.Value(13) = pPoint.x pTabCursor.UpdateRow(pRow) Set pRow = pTabCursor.NextRow Wend
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.