Message 1 of 1
Populating a datagridview using an Autolisp list?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all,
Does anyone have any experience with populating a datagridview using an AutoLisp list?
For example, I have a lisp function that I would like to execute through a vb.net exe that returns a variable length list like:
(("HOLE" 1 3 2.75 1.5 0.5625 0.0 0.0) ("HOLE" 1 3 107.75 1.5 0.9375 0.0 0.0) ... )
I want to take that list and push it into a datagridview like so:
HOLE | 1 | 3 | 2.75 | 1.5 | 0.5625 | 0 | 0 |
HOLE | 1 | 3 | 107.75 | 1.5 | 0.9375 | 0 | 0 |
Fair warning, that this is definitely amateur hour when it comes to .NET, so any guidance would be appreciated.
Thanks for the help guys.