<?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: Using DCl to open another dialog while closing the current dialog in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10513124#M57570</link>
    <description>&lt;P&gt;Like others running a new dcl is probably the only way I have a couple of library dcl's that accept a&lt;STRONG&gt; list&lt;/STRONG&gt; of label and value,&amp;nbsp; getvalues or using radio buttons or toggles. These only require like 3 lines of code to work as all the dcl stuff is done by a external defun. Advantage is can be from 1 to around 20 items. Can have images as well. Like John save the default values as well as say button picked in a file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This may save duplicating dcls.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(if (not AH:Butts)(load "Multi Radio buttons.lsp"))
(if (= but nil)(setq but 1))
(setq ans (ah:butts but "V"   '("Choose colour to remain " "  1" "  2" "  3" "  4" "  5" "  6" "  7")) )

(setq ans (ah:butts but "V"   '("Choose colour to remain " v1 v2 v3 v4 v5 v6 v7)) )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 02 Aug 2021 05:11:52 GMT</pubDate>
    <dc:creator>Sea-Haven</dc:creator>
    <dc:date>2021-08-02T05:11:52Z</dc:date>
    <item>
      <title>Using DCl to open another dialog while closing the current dialog</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10508157#M57565</link>
      <description>&lt;P&gt;I have a need to setup "pages" in my dialogs. The help file states this can be done but doesn't go into any detail on how. I assumed it would be with closing the current dialog and opening the next. But I cannot seem to get it to work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand why "(done_dialog) (shownext)" would fail. That's because it would close the current (and stop processing the code) before issuing the command for the next to show.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But there is a different issue by swapping the positions to "(shownext) (done_dialog)". I believe its because the interpreter gets confused about which dialog is to be "done". When it is ran this way the result is the next dialog appears and the program freezes. You can't close the current, but you can move it. When you move it, you can find the first dialog underneath. But you can't close that one either. At this point it is required to kill Autocad.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know how to write the code to show pages in DCL?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 12:26:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10508157#M57565</guid>
      <dc:creator>dvertz</dc:creator>
      <dc:date>2021-07-30T12:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Using DCl to open another dialog while closing the current dialog</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10508257#M57566</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Are you talking about nested dialog boxes, &lt;U&gt;&lt;A href="https://www.afralisp.net/dialog-control-language/tutorials/nesting-dialog-boxes.php" target="_self"&gt;like this&lt;/A&gt;&lt;/U&gt;?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 13:01:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10508257#M57566</guid>
      <dc:creator>rkmcswain</dc:creator>
      <dc:date>2021-07-30T13:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using DCl to open another dialog while closing the current dialog</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10508728#M57567</link>
      <description>&lt;P&gt;I am afraid that nesting dialogs is not what I am looking to do. As I have too many pages and it would go beyond the 8 levels max. As I want to select a button and have the current dialog removed and open a new dialog at the same time. I understand how to nest dialogs and I understand how to hide dialogs for screen selection and then have the dialog come back. I am attempting to remove a nested dialog requiring extra buttons to initiate the next page in a series of dialogs. If the dialog was just hidden, to display the next dialog, then how would I get ride of it when all pages were done. (terminate maybe?) If the dialogs are just hidden does that impose the limit of 8 max?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 15:35:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10508728#M57567</guid>
      <dc:creator>dvertz</dc:creator>
      <dc:date>2021-07-30T15:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using DCl to open another dialog while closing the current dialog</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10508733#M57568</link>
      <description>&lt;P&gt;On this forum we've had similar requests before. If you search trough past forum posts you may find several solution. There are various approaches to the problem. I personally use the method that before closing dialog box,either to run some command or to start new dialog, close main dialog and store its values&amp;nbsp; to temporary file and depending on selected action perform that action. When sub-dialog is closed on its closing one can open main dialog. Each dialog box has its own dialog id. It's maybe a little bit complicated to handle multiple ids but this way if done well there is no way to break the window queue and to halt Autocad. Check this post for&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remember-previous-dcl-values-default-values/m-p/9673689/highlight/true#M403178" target="_self"&gt; more details&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 15:37:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10508733#M57568</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2021-07-30T15:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Using DCl to open another dialog while closing the current dialog</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10512701#M57569</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5530556"&gt;@hak_vz&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Without looking, I'm pretty sure that's exactly what I do... store the previous tile values, close the dialog, open the new one, and when you close that you reopen the first repopulating it with the stored values.&lt;/P&gt;
&lt;P&gt;I may even temporarily close the first to select objects or an entsel or a getpoint, but I run everything within a continual grread, so that even if I Esc it returns to the previous dialog (or whatever dialog is appropriate).&lt;/P&gt;
&lt;P&gt;What's really fun is that you can call an alert with a dialog open.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Aug 2021 22:11:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10512701#M57569</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2021-08-01T22:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using DCl to open another dialog while closing the current dialog</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10513124#M57570</link>
      <description>&lt;P&gt;Like others running a new dcl is probably the only way I have a couple of library dcl's that accept a&lt;STRONG&gt; list&lt;/STRONG&gt; of label and value,&amp;nbsp; getvalues or using radio buttons or toggles. These only require like 3 lines of code to work as all the dcl stuff is done by a external defun. Advantage is can be from 1 to around 20 items. Can have images as well. Like John save the default values as well as say button picked in a file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This may save duplicating dcls.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(if (not AH:Butts)(load "Multi Radio buttons.lsp"))
(if (= but nil)(setq but 1))
(setq ans (ah:butts but "V"   '("Choose colour to remain " "  1" "  2" "  3" "  4" "  5" "  6" "  7")) )

(setq ans (ah:butts but "V"   '("Choose colour to remain " v1 v2 v3 v4 v5 v6 v7)) )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Aug 2021 05:11:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10513124#M57570</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-08-02T05:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Using DCl to open another dialog while closing the current dialog</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10514304#M57571</link>
      <description>&lt;P&gt;Thanks to all that replied, but I guess I was not explaining myself very well as none of the answers came close to what I was needing. And only Sea_Haven provided any code. After hours of searching through the forums (as hak_vz suggested) I still found nothing to help (that's why I posted the question). So I worked the problem myself and found the solution. I was trying to call the next dialog from the current and that couldn't work because the dialog was closing before completion of the lisp code. So, I realized I could do it through the main dialog that called the page 1 of the settings dialog, and when that page of settings closed the main dialog would take over to show page 2 of the settings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the test code that worked for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TEST_PAGES : dialog {&lt;BR /&gt;label = "Test Pages";&lt;BR /&gt;: boxed_column {&lt;BR /&gt;label = "Pages";&lt;BR /&gt;: button { key = "d:testpage"; label = "Settings"; width = 15; fixed_width = true; }&lt;BR /&gt;ok_cancel;&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;PAGE01 : dialog {&lt;BR /&gt;label = "Page 1";&lt;BR /&gt;: row {&lt;BR /&gt;: button { key = "d:page1"; label = "Page 1"; width = 15; fixed_width = true; }&lt;BR /&gt;: button { key = "d:page2"; label = "Page 2"; width = 15; fixed_width = true; }&lt;BR /&gt;: button { key = "d:page3"; label = "Page 3"; width = 15; fixed_width = true; }&lt;BR /&gt;}&lt;BR /&gt;: text_part { label = "Page 1"; }&lt;BR /&gt;ok_cancel;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;PAGE02 : dialog {&lt;BR /&gt;label = "Page 2";&lt;BR /&gt;: row {&lt;BR /&gt;: button { key = "d:page1"; label = "Page 1"; width = 15; fixed_width = true; }&lt;BR /&gt;: button { key = "d:page2"; label = "Page 2"; width = 15; fixed_width = true; }&lt;BR /&gt;: button { key = "d:page3"; label = "Page 3"; width = 15; fixed_width = true; }&lt;BR /&gt;}&lt;BR /&gt;: text_part { label = "Page 2"; }&lt;BR /&gt;ok_cancel;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;PAGE03 : dialog {&lt;BR /&gt;label = "Page 3";&lt;BR /&gt;: row {&lt;BR /&gt;: button { key = "d:page1"; label = "Page 1"; width = 15; fixed_width = true; }&lt;BR /&gt;: button { key = "d:page2"; label = "Page 2"; width = 15; fixed_width = true; }&lt;BR /&gt;: button { key = "d:page3"; label = "Page 3"; width = 15; fixed_width = true; }&lt;BR /&gt;}&lt;BR /&gt;: text_part { label = "Page 3"; }&lt;BR /&gt;ok_cancel;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(defun C:TESTPAGES (/)&lt;BR /&gt;(setq INT:DCLMAIN (load_dialog "TESTPAGES.dcl"))&lt;BR /&gt;(if (not (new_dialog "TEST_PAGES" INT:DCLMAIN)) (exit))&lt;BR /&gt;(action_tile "d:testpage" "(setq INT:PAGE 11)(LOAD_PAGE)")&lt;BR /&gt;(action_tile "accept" "(done_dialog)")&lt;BR /&gt;(start_dialog)&lt;BR /&gt;(unload_dialog INT:DCLMAIN)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;;;Choose page to load&lt;BR /&gt;(defun LOAD_PAGE (/)&lt;BR /&gt;(while (&amp;gt; INT:PAGE 1)&lt;BR /&gt;(cond ((= INT:PAGE 11)&lt;BR /&gt;(setq INT:DCL_11 (load_dialog "TESTPAGES.dcl"))&lt;BR /&gt;(if (not (new_dialog "PAGE01" INT:DCL_11)) (exit))&lt;BR /&gt;(action_tile "accept" "(done_dialog 1)")&lt;BR /&gt;(action_tile "cancel" "(done_dialog 0)")&lt;BR /&gt;(action_tile "d:page1" "(done_dialog 11)")&lt;BR /&gt;(action_tile "d:page2" "(done_dialog 12)")&lt;BR /&gt;(action_tile "d:page3" "(done_dialog 13)")&lt;BR /&gt;(setq INT:PAGE (start_dialog))&lt;BR /&gt;(unload_dialog INT:DCL_11)&lt;BR /&gt;)&lt;BR /&gt;((= INT:PAGE 12)&lt;BR /&gt;(setq INT:DCL_12 (load_dialog "TESTPAGES.dcl"))&lt;BR /&gt;(if (not (new_dialog "PAGE02" INT:DCL_12)) (exit))&lt;BR /&gt;(action_tile "accept" "(done_dialog 1)")&lt;BR /&gt;(action_tile "cancel" "(done_dialog 0)")&lt;BR /&gt;(action_tile "d:page1" "(done_dialog 11)")&lt;BR /&gt;(action_tile "d:page2" "(done_dialog 12)")&lt;BR /&gt;(action_tile "d:page3" "(done_dialog 13)")&lt;BR /&gt;(setq INT:PAGE (start_dialog))&lt;BR /&gt;(unload_dialog INT:DCL_12)&lt;BR /&gt;)&lt;BR /&gt;((= INT:PAGE 13)&lt;BR /&gt;(setq INT:DCL_13 (load_dialog "TESTPAGES.dcl"))&lt;BR /&gt;(if (not (new_dialog "PAGE03" INT:DCL_13)) (exit))&lt;BR /&gt;(action_tile "accept" "(done_dialog 1)")&lt;BR /&gt;(action_tile "cancel" "(done_dialog 0)")&lt;BR /&gt;(action_tile "d:page1" "(done_dialog 11)")&lt;BR /&gt;(action_tile "d:page2" "(done_dialog 12)")&lt;BR /&gt;(action_tile "d:page3" "(done_dialog 13)")&lt;BR /&gt;(setq INT:PAGE (start_dialog))&lt;BR /&gt;(unload_dialog INT:DCL_13)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 02 Aug 2021 14:49:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10514304#M57571</guid>
      <dc:creator>dvertz</dc:creator>
      <dc:date>2021-08-02T14:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using DCl to open another dialog while closing the current dialog</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10514355#M57572</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/393249"&gt;@dvertz&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Thanks to all that replied, but I guess I was not explaining myself very well as none of the answers came close to what I was needing. And only Sea_Haven provided any code.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/393249"&gt;@dvertz&lt;/a&gt;&amp;nbsp; You have my code in the post I've linked (see under more details)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remember-previous-dcl-values-default-values/m-p/9673689/highlight/true#M403178" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/remember-previous-dcl-values-default-values/m-p/9673689/highlight/true#M403178&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, the best solution is the one you make it yourself.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Aug 2021 15:05:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10514355#M57572</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2021-08-02T15:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using DCl to open another dialog while closing the current dialog</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10515825#M57573</link>
      <description>&lt;P&gt;Using Multi radio butons would remove 3 of the dcls possibly all 4. As all the pages are a repeating pattern,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(setq INT:DCL_13 (load_dialog "TESTPAGES.dcl"))&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Just need to add the cancel button as that is not in Multi Radio Buttons.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Aug 2021 04:54:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10515825#M57573</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-08-03T04:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using DCL to open another dialog while closing the current dialog</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10516662#M57574</link>
      <description>&lt;P&gt;I realize the code repeats and I am always for cutting down on code, but I am not understanding how radio buttons can help in my situation. I used test code here, but the actual dialogs have MANY options (the reason I need pages of dialogs rather than just one). If I removed the buttons and put in radio buttons, I would still need to run the loop and duplicate code to show the next page, correct?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Aug 2021 11:42:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10516662#M57574</guid>
      <dc:creator>dvertz</dc:creator>
      <dc:date>2021-08-03T11:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Using DCl to open another dialog while closing the current dialog</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10518303#M57575</link>
      <description>&lt;P&gt;No worries I may be misinterpreting exactly what your doing, in the past I have used parent child DCL,s not close and open another.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SeaHaven_0-1628034583150.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/948231iC7E4A2142E49EF07/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SeaHaven_0-1628034583150.png" alt="SeaHaven_0-1628034583150.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Aug 2021 23:49:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/10518303#M57575</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-08-03T23:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Using DCl to open another dialog while closing the current dialog</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/12908409#M57576</link>
      <description>&lt;P&gt;You can use DONE_DIALOG with an exit code (ex. (DONE_DIALOG 100)) then load new dialog after first in unloaded&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;(setq status (start_dialog))&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; (unload_dialog dcl_id)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; (if (= 100 status)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(LOAD_OTHER)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 18:05:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-dcl-to-open-another-dialog-while-closing-the-current/m-p/12908409#M57576</guid>
      <dc:creator>galibardiWNXEW</dc:creator>
      <dc:date>2024-07-19T18:05:21Z</dc:date>
    </item>
  </channel>
</rss>

