I tried adding this code to .lsp but nothing happened
(setq scr "0")
(setq llist '("A" "B" "C"))
(start_list "REVISION")
(mapcar 'add_list llist)
(end_list)
There is noting wrong with the code you post as far i can see so the problem is else where, post your full code dcl + lsp
Moshe
your dcl code can include list like this:
: popup_list {
label = "REVISION";
key = "REVISION";
list = "A\nB\nC\nD";
}
Then the popup list will look like this:
Appreciated.