<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: help with boxed_radio_column with multiple rows? in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9373383#M77281</link>
    <description>&lt;P&gt;I could not wrap my simple mind around your code.&lt;/P&gt;&lt;P&gt;So I went dawn another path. I got the multiple rows to work in the radio_column, but now I do not know how to get "Mylist" to display in the list_box. The radio buttons work but...&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 216px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/740384iE401AADA02F4C0D7/image-dimensions/216x252?v=v2" width="216" height="252" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I'm hoping I'm close and this an easy fix.&lt;/P&gt;&lt;P&gt;See attached lsp and dcl files.&lt;/P&gt;</description>
    <pubDate>Thu, 12 Mar 2020 04:50:35 GMT</pubDate>
    <dc:creator>DC-MWA</dc:creator>
    <dc:date>2020-03-12T04:50:35Z</dc:date>
    <item>
      <title>help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9372471#M77277</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I'm trying to make a help file for one of the larger programs we use.&lt;/P&gt;&lt;P&gt;I've got the basics figured out.&lt;/P&gt;&lt;P&gt;I'm using radio buttons to call up text describing each function.&lt;/P&gt;&lt;P&gt;At this point I can only make one row of radio buttons. If I break them up into two, I lose the functionality of the buttons.&lt;/P&gt;&lt;P&gt;I'm looking to have a radio_column with two or more rows within.&lt;/P&gt;&lt;P&gt;I have attached the lisp and dcl files.&lt;/P&gt;&lt;P&gt;I'm hoping this is semi-simple although after searching, I'm not sure.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;-dc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2020 18:23:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9372471#M77277</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2020-03-11T18:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9373052#M77278</link>
      <description>&lt;P&gt;Not sure if this will help but this is my radio button pick method it returns button number. RB1-RBx etc. So second radio button column would be say RB6+&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(setq x 1)
(repeat (- (length butlst) 1)
(setq k (strcat "Rb" (rtos x 2 0)))
(action_tile k  (strcat "(setq but "  (rtos x 2 0) ")" "(done_dialog)"))
(if (= ahdef x)(set_tile k "1")) ; sets button default to 1st button
(setq x (+ x 1))
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2020 23:33:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9373052#M77278</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2020-03-11T23:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9373272#M77279</link>
      <description>&lt;P&gt;Not sure how to apply this to my situation. I will play with it and see where it takes me.&lt;/P&gt;&lt;P&gt;Thank you very much for your reply.&lt;/P&gt;&lt;P&gt;-dc&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 03:09:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9373272#M77279</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2020-03-12T03:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9373277#M77280</link>
      <description>&lt;P&gt;The repeat would be total number of buttons the key is RBX and it returns the button number not a value. so you would have a cond checking button number. I have not tested just an idea.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 03:12:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9373277#M77280</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2020-03-12T03:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9373383#M77281</link>
      <description>&lt;P&gt;I could not wrap my simple mind around your code.&lt;/P&gt;&lt;P&gt;So I went dawn another path. I got the multiple rows to work in the radio_column, but now I do not know how to get "Mylist" to display in the list_box. The radio buttons work but...&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 216px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/740384iE401AADA02F4C0D7/image-dimensions/216x252?v=v2" width="216" height="252" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I'm hoping I'm close and this an easy fix.&lt;/P&gt;&lt;P&gt;See attached lsp and dcl files.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 04:50:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9373383#M77281</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2020-03-12T04:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9373489#M77282</link>
      <description>&lt;P&gt;Have a look at Lee-mac.com "Listbox" example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So you want to click a radio button then have a help message, why not just use (alert msg1) etc just have the options buttons only.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can have a edit box called Text but you will have to close and reopen the dcl. So you might start with Option 1 and then as you pick redo the text.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 07:09:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9373489#M77282</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2020-03-12T07:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9374404#M77283</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;The lisp I sent first "test.lsp" it uses radio buttons to display text based on selection but has only one row in radio_column.&lt;/P&gt;&lt;P&gt;The second lisp "doit.lsp" has multiple rows in radio_column, does not display text in list_box.&lt;/P&gt;&lt;P&gt;In test.lsp it works wihout closing and reopening the dcl.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll keep trying. Thank you for your time my friend.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 14:12:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9374404#M77283</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2020-03-12T14:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9374845#M77284</link>
      <description>&lt;P&gt;You could switch your approach to an array of toggles, such that when you pick one it toggles the others off.&lt;/P&gt;
&lt;P&gt;I don't think Autodesk provides a radio_array option.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 16:45:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9374845#M77284</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2020-03-12T16:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9374920#M77285</link>
      <description>&lt;P&gt;I got the multiple rows to work.&lt;/P&gt;&lt;P&gt;Now I'm having trouble it to show mylist at selection at it did my first attempt.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 17:21:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9374920#M77285</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2020-03-12T17:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9374940#M77286</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 593px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/740711iE4C1E9AF2D72F076/image-dimensions/593x386?v=v2" width="593" height="386" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 17:30:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9374940#M77286</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2020-03-12T17:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9375155#M77287</link>
      <description>&lt;P&gt;&lt;FONT size="4"&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6400150" target="_blank"&gt;@DC-MWA&lt;/A&gt;&amp;nbsp; Does this solve your problem ??&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="4"&gt;If yes I will make adaptations and I will set the example for you !!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="iframe-container" style="position: relative; height: 0; margin: 0; padding-bottom: 96.875%;"&gt;&lt;IFRAME width="640" height="620" style="position: absolute; left: 0; top: 0; width: 100%; height: 100%;" src="https://screencast.autodesk.com/Embed/Timeline/85f394cc-343a-47fb-88dc-3818ed330019" frameborder="0" allowfullscreen="true" webkitallowfullscreen="true" scrolling="no"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 12 Mar 2020 19:22:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9375155#M77287</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-12T19:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9375171#M77288</link>
      <description>&lt;P&gt;That's what I need except I need multiple rows of radio buttons otherwise the dialog gets huge.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 19:34:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9375171#M77288</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2020-03-12T19:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9376432#M77289</link>
      <description>&lt;P&gt;&lt;FONT size="4"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6400150"&gt;@DC-MWA&lt;/a&gt;&amp;nbsp; Sorry for not having time to make the changes !!&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="4"&gt;One question: Why not use &lt;EM&gt;&lt;STRONG&gt;popup_list&lt;/STRONG&gt;&lt;/EM&gt; instead of this huge list of radio_buttons ??&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Mar 2020 12:54:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9376432#M77289</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-13T12:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9376616#M77290</link>
      <description>&lt;P&gt;Pop-up list would work. The program I'm working on needs to put the separate items in the face of my users.&lt;/P&gt;&lt;P&gt;When it opens pow! options in your face.&amp;nbsp; lol&lt;/P&gt;</description>
      <pubDate>Fri, 13 Mar 2020 14:17:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9376616#M77290</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2020-03-13T14:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9377486#M77291</link>
      <description>&lt;P&gt;Copy this to command Line&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(alert (strcat "this is a pop up\n\nIts in your face \n\nand very simple to create"))&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 14 Mar 2020 00:06:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9377486#M77291</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2020-03-14T00:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9377703#M77292</link>
      <description>&lt;P&gt;Alert box? How does this help?&lt;/P&gt;</description>
      <pubDate>Sat, 14 Mar 2020 06:21:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9377703#M77292</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2020-03-14T06:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9378028#M77293</link>
      <description>&lt;P&gt;&lt;FONT size="4"&gt;I came back lol.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;I attached the example of how you can deal with these sutuations, make the modifications on your own.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Observations:&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="4"&gt;As I said, I replaced radio_button with popup_list.&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="4"&gt;I'm just a novice in this AutoLISP world and I probably have a smarter way of writing this.&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;EM&gt;I hope it helps.&lt;BR /&gt;If it solved your problem, mark it as a solution.&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="lia-code-sample language-markup"&gt;&lt;CODE&gt;;c:BRCWM
;;by - Júnior Nogueira
;;------------------------------------------------------------;;
(defun c:BRCWM ( / dcltest listX list1 list2 list3 dx dy )

;;add *error* handling on your own
 (JR:writedcl)
 (setq dcltest (load_dialog dcl))
 (if (&amp;gt; dcltest 0)
  (if (new_dialog "dclt" dcltest)
   (progn
    (setq erro* "Function cancelled,quit / exit abort,console break/ list nil")
    (setq list1 '("ItemX" "ItemX" "ItemX" "ItemX" "ItemX"))
    (setq list2 '("ItemY" "ItemY" "ItemY" "ItemY" "ItemY"))
    (setq list3 '("ItemZ" "ItemZ" "ItemZ" "ItemZ" "ItemZ"))
    ;(setq dx (dimx_tile "img"))
    ;(setq dy (dimy_tile "img"))

    ;;go first here!
    (defun JR:radiobuttons ( radiobuttons )
     (cond
      ((= radiobuttons "radiobuttons1")   (setq listX  list1  topico  "radiobuttons1"))
      ((= radiobuttons "radiobuttons2")   (setq listX  list2  topico  "radiobuttons2"))
      ((= radiobuttons "radiobuttons3")   (setq listX  list3  topico  "radiobuttons3"))
     )
     (start_list "item" 3)
     (mapcar 'add_list listX)
     (end_list)
     ;(start_image "img") ; previous code!
     ;(fill_image 0 0 dx dy 0)(end_image) ; previous code!
     (set_tile "msg" "Select an item from the list, please")
    );defin end!!

    (foreach x '("radiobuttons1" "radiobuttons2" "radiobuttons3")
     (action_tile x "(JR:radiobuttons $key)")
    )
    (action_tile "item" "(setq item (nth (atoi $value) listX))") ; previous code!
    (action_tile "help" "(c:JR:Help)")
    (action_tile "cancel" "(done_dialog 0)" )
    (action_tile "accept" "(if item (done_dialog 1)(alert erro*))")
    (setq reason (start_dialog))
    (unload_dialog dcltest)
    (cond 
     ((= reason 0) (princ "\nCanceled."))
     ((= reason 1)(JR:Actiontopicitem topico item))
    )
   );;progn end!!
  );;If end!!
  (alert "Oops, the dcl file could not be loaded!")
    )
 (if (and dcl (setq dcl (findfile dcl)))
  (vl-file-delete dcl)
 )
  (princ)
)
;;------------------------------------------------------------;
;JR:actiontopicitem
;;Dcl Actions
;;Arguments [topic] and [Item]

(defun JR:Actiontopicitem ( %topico %item / postesbloco )
 (alert (strcat "Do something in " %topico " and " %item))
)

;;------------------------------------------------------------;
;;JR:writedcl - Junior Nogueira
;;write your help
;;No arguments
(defun c:JR:Help nil
 (alert "Your help!")
)
;;------------------------------------------------------------;
;;JR:writedcl - Junior Nogueira
;;Write the dcl in my temp folder!
;;No arguments
(defun JR:writedcl ( )
 (if
  (and (setq dcl (vl-filename-mktemp "tmp.dcl"))(setq arquivo (open dcl "w")))
   (mapcar '(lambda (x) (write-line x arquivo))
    (list
     "dclt : dialog"
     "{"
     "label=\"Teste - Autor: Júnior Nogueira , V 1.0\";"
     "initial_focus=\"msg\";"
     ": spacer"
     "  {"
     "  height=1;"
     "  }"
     "  : text"
     "  {"
     "   label=\"Select the topic and then the item\";"
     "   key=\"msg\";"
     "     alignment=centered;"
     "     height=2;"
     "  }"
     "  : row"
     "   {"
     "   alignment=centered;"
     "   fixed_width=true;"
     "   spacer;"
     "     : column"
     "     {"
     "       alignment=top;"
     "       fixed_width=true;"
     "       fixed_height=true;"
     "       : text"
     "       {"
     "       label=\"Select topic\";"
     "       }"
     "     : radio_column"
     "     {"
     "        alignment=top;"
     "        fixed_height=true;"
     "       : radio_button"
     "       {"
     "        label=\"radiobuttons1\";key=\"radiobuttons1\";"
     "       }"
     "       : radio_button"
     "       {"
     "        label=\"radiobuttons2\";key=\"radiobuttons2\";"
     "       }"
     "       : radio_button"
     "       {"
     "        label=\"radiobuttons3\";key=\"radiobuttons3\";"
     "       }"
     "     }"
     "  }"
     "    spacer;"
     "  : column"
     "   {"
     "     alignment=top;"
     "     children_fixed_width=true;"
     "     children_fixed_height=true;"
     "        : text"
     "        {"
     "          label=\"Select item\";"
     "        }"
     "        : list_box"
     "        {"
     "           key=\"item\";"
     "           width=40;"
     "           height=16;"
     "           alignment=top;"
     "        }"
     "    }"
     "    spacer;"
     "    spacer;"
     "   }"
     "    spacer;"
     "  : column"
     "  {"
     "   :concatenation"
     "     {"
     "       alignment=centered;"
     "       children_fixed_width=true;"
     "       : button"
     "         {"
     "         label=\"help\";key=\"help\";"
     "         width=15;"
     "         height=2;"
     "         }"
     "       : button"
     "         {"
     "         label=\"cancel\";key=\"cancel\";"
     "         is_cancel=true;"
     "         width=15;"
     "         height=2;"
     "         }"
     "       : button"
     "         {"
     "         label=\"accept\";key=\"accept\";"
     "         width=15;"
     "         height=2;"
     "         }"
     "      }"
     "   }"
     "}"
     ""
    )
   )
  )
 (if arquivo
  (close arquivo)
 )
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="iframe-container" style="position: relative; height: 0; margin: 0; padding-bottom: 101.5625%;"&gt;&lt;IFRAME width="640" height="650" style="position: absolute; left: 0; top: 0; width: 100%; height: 100%;" src="https://screencast.autodesk.com/Embed/Timeline/fd8716f3-6851-4768-8abf-63127f66964b" frameborder="0" allowfullscreen="true" webkitallowfullscreen="true" scrolling="no"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 14 Mar 2020 14:18:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9378028#M77293</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-14T14:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9378118#M77294</link>
      <description>&lt;P&gt;First: let me say that this awesome, no separate dcl file... love it!&lt;/P&gt;&lt;P&gt;Second: I truly appreciate your time and effort on this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As the name of the post states, I'm trying to get &lt;U&gt;&lt;STRONG&gt;multiple rows&lt;/STRONG&gt;&lt;/U&gt; of radio buttons. In the DOIT.lsp I attached, I got the multiple rows of radio buttons to work properly, I just can't get the description to show in the list_box.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In your code, the description works well, but I need &lt;U&gt;&lt;STRONG&gt;multiple rows&lt;/STRONG&gt; &lt;/U&gt;of radio buttons.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 629px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/741349i3C67196474464AA7/image-dimensions/629x353?v=v2" width="629" height="353" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Again, I truly appreciate your time and effort on this.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;-dc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Mar 2020 16:19:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9378118#M77294</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2020-03-14T16:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9378527#M77295</link>
      <description>&lt;P&gt;My Autocad R12 customization manual refers to dcl "text_part" as a tile, it can be one line or multiple lines. This may be one way around the problem, my manual is a paper copy but there should be a online copy at Autodesk under "developers help, regarding DCL's"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could look at calling a sub dcl it will display over top till say you press OK&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found some sample code. Just use find its about 1/2 way down.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Mar 2020 00:34:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9378527#M77295</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2020-03-15T00:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: help with boxed_radio_column with multiple rows?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9378631#M77296</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 15 Mar 2020 05:11:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-with-boxed-radio-column-with-multiple-rows/m-p/9378631#M77296</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2020-03-15T05:11:30Z</dc:date>
    </item>
  </channel>
</rss>

