01-02-2019
03:13 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
01-02-2019
03:13 PM
Another method is to exclude the Center workpoint (which is always workpoints item 1) from your iteration.
Instead of 'for each workpoint...', use:
for ind as integer = 2 to oWorkpoints.count
dim wp as workpoint = oWorkpoints(ind)
'do work
next
jvj