Message 1 of 6
Anything using ADE_OD on Visual Lisp freezes the Autocad Model Space

Not applicable
01-25-2019
03:16 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm trying to use OD table on Visual Lisp Autocad Map 3D 2019 but it always freezes no matter what "ade_od" function I use. Should I load something before ade_od commands?
Here is one example:
; Define new table (from Object Data Functions Manual)
(setq tabldefn
'(("tablename" . "NEWTABLE")
("tabledesc" . "New Sample Table")
("columns"
; Define a field
(("colname" . "FIELD1")
("coldesc" . "Field1 Description")
("coltype" . "character")
("defaultval" . "Default Value"))
; Define more fields as needed
)
))
; Create the new table
(ade_oddefinetab tabldefn)
Thanks in advance