<?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: Connect Autolisp file to my Dialog box file in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13075152#M8096</link>
    <description>&lt;P&gt;Im on my phone right now so i cant plug in the lisp and test it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However i can tell you that the radio buttons will not work. Its not always just one of those options. Sometimes it is a combination of multiple options. For example "Sections Elevations Isometrics".&lt;BR /&gt;&lt;BR /&gt;I was going to change the code to add things in with an "&amp;amp;" sign before them like "(strcat layoutname "&amp;amp; Elevations")" or&amp;nbsp;"(strcat layoutname "&amp;amp; Isometrics")". The only issue with that is that if it is the first item in the list then the "&amp;amp;" sign is not necessary.&lt;/P&gt;</description>
    <pubDate>Wed, 09 Oct 2024 22:21:15 GMT</pubDate>
    <dc:creator>christian_paulsen98V29</dc:creator>
    <dc:date>2024-10-09T22:21:15Z</dc:date>
    <item>
      <title>Connect Autolisp file to my Dialog box file</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13074874#M8094</link>
      <description>&lt;P&gt;Hello! I recently just created a dialog box which i think I've got looking almost exactly how i want it to look.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now i am trying to create the Autolisp file that calls forward the dialog box, and then performs actions based off of the users input.&lt;BR /&gt;&lt;BR /&gt;At first the dialog box was popping up, and you could check/uncheck the boxes and also type in the text field. Now when i try to open the dialog box it pops up but then instantly closes. I'm getting the error on my command line "; error: too many arguments".&lt;BR /&gt;&lt;BR /&gt;So i guess the first part of fixing this would be to stop it from instantly closing.&lt;BR /&gt;&lt;BR /&gt;The second part is making it functional. The purpose of this dialog box is to rename my current layout based off of which options are selected in the dialog window. Ideally you would check the boxes, then based off of what is checked it would then get passed down to the text field, then when you click ok whatever is in the text field would then get passed to your current tab name.&lt;BR /&gt;&lt;BR /&gt;I will post both the dcl code and lisp code below. Please give me any advice you may have, all input is appreciated.&lt;/P&gt;&lt;LI-CODE lang="general"&gt;layoutrename : dialog {
 label = "Edit Layout Title" ;

	: row {

		:boxed_row {
		label = "Select Layout Options" ;

			: toggle {
			key = "tb1" ;
			label = "Plan" ;
			value = "1" ;
			}

			: toggle {
			key = "tb2" ;
			label = "Elevations" ;
			}

			: toggle {
			key = "tb3" ;
			label = "Sections" ;
			}

			: toggle {
			key = "tb4" ;
			label = "Details" ;
			}

			: toggle {
			key = "tb5" ;
			label = "Isometrics" ;
			}

			: toggle {
			key = "tb6" ;
			label = "Fabrications" ;
			}

		}

	}

	: row {

		: edit_box {
		key = "eb1" ;
		label = "Layout Name :" ;
		edit_width = 60 ;
		}

	}

	ok_cancel ;
					
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun C:layoutrename ()	

	(setq layoutname "test")

	(setq dclfilename "layoutrename.dcl")
	(setq dialogname "layoutrename")

	(setq dcl_id (load_dialog dclfilename))
	(new_dialog dialogname dcl_id)

	(action_tile "tb1" "(setq layoutname (strcat layoutname "Plan"))")
	(action_tile "tb2" "(setq layoutname (strcat layoutname "Elevations"))")
	(action_tile "tb3" "(setq layoutname (strcat layoutname "Sections"))")
	(action_tile "tb4" "(setq layoutname (strcat layoutname "Details"))")
	(action_tile "tb5" "(setq layoutname (strcat layoutname "Isometrics"))")
	(action_tile "tb6" "(setq layoutname (strcat layoutname "Fabrications"))")

	(set_tile "eb1" layoutname)

	(action_tile
	"cancel"
	"(done_dialog)"
	)

	(action_tile
	"accept"
	"(command "-layout" "r" layoutname "")"
	"(done_dialog)"
	)

	(start_dialog)
	(unload_dialog dcl_id)

)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2024 19:32:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13074874#M8094</guid>
      <dc:creator>christian_paulsen98V29</dc:creator>
      <dc:date>2024-10-09T19:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Autolisp file to my Dialog box file</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13075041#M8095</link>
      <description>&lt;P&gt;These are the modifications that I made to both your DCL and LSP:&lt;/P&gt;&lt;P&gt;1. DCL - instead of toggle buttons you should use radio buttons so that only the current choice is selected. I commented out your lines of code and entered new ones:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;//		:boxed_row {
		:boxed_radio_row {
		label = "Select Layout Options" ;

//			: toggle {
      : radio_button {
			key = "tb1" ;
			label = "Plan" ;
			value = "1" ;
			}

//			: toggle {
      : radio_button {
			key = "tb2" ;
			label = "Elevations" ;
			}

//			: toggle {
      : radio_button {
			key = "tb3" ;
			label = "Sections" ;
			}

//			: toggle {
      : radio_button {
			key = "tb4" ;
			label = "Details" ;
			}

//			: toggle {
      : radio_button {
			key = "tb5" ;
			label = "Isometrics" ;
			}

//			: toggle {
      : radio_button {
			key = "tb6" ;
			label = "Fabrications" ;
			}

		}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. LSP - assuming your dcl file is located under one of the Options&amp;gt;Files&amp;gt;Support File Search Paths, then the following changes should be made:&lt;/P&gt;&lt;P&gt;a. Localize variables - this can be done once you've finished troubleshooting the code replacing the following line:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun C:layoutrename () &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun C:layoutrename (/ dialogname dclfilename layoutname layoutname stid) ; localize variables &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;b. Add this line to check if currently in &lt;STRONG&gt;Model&lt;/STRONG&gt; tab which cannot be renamed then switch to layout tab:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;  ; if in Model switch to layout since model tab cannot be renamed
  (if(not(zerop(getvar"tilemode")))(setvar"tilemode"0))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;c: Quotes listed in &lt;STRONG&gt;action_tile&lt;/STRONG&gt; statements need to be prefixed using backslash as the escape key so: &lt;STRONG&gt;"&lt;/STRONG&gt; need to be: &lt;STRONG&gt;\"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;d:&amp;nbsp;&lt;SPAN&gt;edit_box key "&lt;STRONG&gt;eb1&lt;/STRONG&gt;" should reflect &lt;STRONG&gt;radio_button&lt;/STRONG&gt;&amp;nbsp;&lt;SPAN&gt;selection&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;e: instead of replacing the &lt;STRONG&gt;layoutname&lt;/STRONG&gt; variable I added a new one&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;layoutnamenew&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt; so&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;layoutname string can be preserved&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So replace the following lines of code:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;	(action_tile "tb1" "(setq layoutname (strcat layoutname "Plan"))")
	(action_tile "tb2" "(setq layoutname (strcat layoutname "Elevations"))")
	(action_tile "tb3" "(setq layoutname (strcat layoutname "Sections"))")
	(action_tile "tb4" "(setq layoutname (strcat layoutname "Details"))")
	(action_tile "tb5" "(setq layoutname (strcat layoutname "Isometrics"))")
	(action_tile "tb6" "(setq layoutname (strcat layoutname "Fabrications"))")
  
  (set_tile "eb1" layoutname)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With these:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;  (set_tile "eb1" (setq layoutnamenew (strcat layoutname "Plan"))) ; initial setting
  
	(action_tile "tb1" "(set_tile \"eb1\" (setq layoutnamenew (strcat layoutname \"Plan\")))")
	(action_tile "tb2" "(set_tile \"eb1\" (setq layoutnamenew (strcat layoutname \"Elevations\")))")
	(action_tile "tb3" "(set_tile \"eb1\" (setq layoutnamenew (strcat layoutname \"Sections\")))")
	(action_tile "tb4" "(set_tile \"eb1\" (setq layoutnamenew (strcat layoutname \"Details\")))")
	(action_tile "tb5" "(set_tile \"eb1\" (setq layoutnamenew (strcat layoutname \"Isometrics\")))")
	(action_tile "tb6" "(set_tile \"eb1\" (setq layoutnamenew (strcat layoutname \"Fabrications\")))")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;f. The dialog needs to be closed first and then you can perform a layout rename&amp;nbsp;&lt;/P&gt;&lt;P&gt;g. Clicking the cancel key vs accept should return different values&lt;/P&gt;&lt;P&gt;h. Then based on if dialog is accepted then run the layout rename command&lt;/P&gt;&lt;P&gt;So change the following lines of code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;	(action_tile
	"cancel"
	"(done_dialog)"
	)

	(action_tile
	"accept"
	"(command "-layout" "r" layoutname "")"
	"(done_dialog)"
	)

	(start_dialog)

	(unload_dialog dcl_id)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To these:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;	(action_tile
	"cancel"
	"(done_dialog 0)"
	)

	(action_tile
	"accept"
	"(done_dialog 1)"
	)

	(setq stid (start_dialog)) ; save return dialog status per clicked done_dialog value
  
	(unload_dialog dcl_id)
  
  (if (= stid 1) ; chk if ok clicked
   (if(not(member layoutnamenew (layoutlist))) ; chk if layoutname exists
	  (command "_.-Layout" "_R" (getvar "ctab") layoutnamenew) ; then rename current layout
    (alert (strcat "Current Layout Name: \n\t[" (getvar "ctab") "]\nCannot be Renamed to an Existing Layout Name: \n\t[" layoutnamenew "]")) ; else show
   )
  )
 (princ) ; clean exit&lt;/LI-CODE&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="paullimapa_0-1728507979550.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1419743iD11AE00EB782CD6A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="paullimapa_0-1728507979550.png" alt="paullimapa_0-1728507979550.png" /&gt;&lt;/span&gt;&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, 09 Oct 2024 21:13:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13075041#M8095</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-10-09T21:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Autolisp file to my Dialog box file</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13075152#M8096</link>
      <description>&lt;P&gt;Im on my phone right now so i cant plug in the lisp and test it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However i can tell you that the radio buttons will not work. Its not always just one of those options. Sometimes it is a combination of multiple options. For example "Sections Elevations Isometrics".&lt;BR /&gt;&lt;BR /&gt;I was going to change the code to add things in with an "&amp;amp;" sign before them like "(strcat layoutname "&amp;amp; Elevations")" or&amp;nbsp;"(strcat layoutname "&amp;amp; Isometrics")". The only issue with that is that if it is the first item in the list then the "&amp;amp;" sign is not necessary.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2024 22:21:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13075152#M8096</guid>
      <dc:creator>christian_paulsen98V29</dc:creator>
      <dc:date>2024-10-09T22:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Autolisp file to my Dialog box file</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13075277#M8097</link>
      <description>&lt;P&gt;In that case I've changed the dcl file back to &lt;STRONG&gt;toggle buttons&lt;/STRONG&gt; and modified the lisp.&lt;/P&gt;&lt;P&gt;The code now includes a subfunction&amp;nbsp;&lt;STRONG&gt;&lt;SPAN&gt;set_eb1&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;that's used by the &lt;STRONG&gt;action&lt;/STRONG&gt; statements by all the &lt;STRONG&gt;toggle&lt;/STRONG&gt; &lt;STRONG&gt;buttons.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Depending on if the &lt;STRONG&gt;toggle button&lt;/STRONG&gt; is checked then add the selected name if not already done vs unchecked then&amp;nbsp; remove the selected name. Then it'll define an updated &lt;STRONG&gt;layoutname f&lt;/STRONG&gt;or the &lt;STRONG&gt;rename&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Give this a shot.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paullimapa_1-1728524701600.png" style="width: 706px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1419787i8440ED48DE3727C3/image-dimensions/706x207?v=v2" width="706" height="207" role="button" title="paullimapa_1-1728524701600.png" alt="paullimapa_1-1728524701600.png" /&gt;&lt;/span&gt;&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>Thu, 10 Oct 2024 01:45:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13075277#M8097</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-10-10T01:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Autolisp file to my Dialog box file</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13077283#M8098</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1137264"&gt;@paullimapa&lt;/a&gt;&amp;nbsp;You really went all out!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15502947"&gt;@christian_paulsen98V29&lt;/a&gt;&amp;nbsp;It is better to save your variables at the done_dialog phase and then run commands afterwards based on the variables (as paullimapa did). My only other suggestion would be to write the DCL in LISP, that way you don't have to manage two separate files for your program.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2024 18:51:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13077283#M8098</guid>
      <dc:creator>MrJSmith</dc:creator>
      <dc:date>2024-10-10T18:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Autolisp file to my Dialog box file</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13077360#M8099</link>
      <description>&lt;P&gt;How do you write the dcl in lisp? This was my first attempt at anything to do with dialog boxes.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2024 19:26:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13077360#M8099</guid>
      <dc:creator>christian_paulsen98V29</dc:creator>
      <dc:date>2024-10-10T19:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Autolisp file to my Dialog box file</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13077373#M8100</link>
      <description>&lt;P&gt;Read all about it in my Jan article on Dialog Fun Facts:&lt;/P&gt;&lt;P&gt;&lt;A href="https://issuu.com/augi/docs/aw202401hr/16?ff" target="_blank"&gt;AUGIWORLD by AUGI, Inc. - Issuu&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can also load and run the attached (DCL2LSP) function and select a dcl file &amp;amp; it'll convert it into lisp code for you to load with your lsp program.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2024 19:32:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13077373#M8100</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-10-10T19:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Autolisp file to my Dialog box file</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13077779#M8101</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15502947"&gt;@christian_paulsen98V29&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;One thing I see is in your action_tiles.&lt;/P&gt;&lt;P&gt;Every thing in DCL requires a string, so when you want to add a string to an action_tile action you must "Esc" the quoted string by adding a backslash before each of its quotes...&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;EDITED&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Not:&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(action_tile "tb1" "(setq layoutname (strcat layoutname "Plan"))")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But:&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(action_tile "tb1" "(setq layoutname (strcat layoutname \"Plan\"))")
                                                        ^     ^
                                                        |     |&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Oct 2024 00:51:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13077779#M8101</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2024-10-11T00:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Autolisp file to my Dialog box file</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13077796#M8102</link>
      <description>&lt;P&gt;I was wondering why there was so many quotations. I knew there was some kind of rule but i couldnt figure out the exact one.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Oct 2024 00:44:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13077796#M8102</guid>
      <dc:creator>christian_paulsen98V29</dc:creator>
      <dc:date>2024-10-11T00:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Autolisp file to my Dialog box file</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13077806#M8103</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15502947"&gt;@christian_paulsen98V29&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Take look again.&amp;nbsp; I edited my response to correct an error.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Oct 2024 00:53:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13077806#M8103</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2024-10-11T00:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Autolisp file to my Dialog box file</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13077898#M8104</link>
      <description>&lt;P&gt;Have a look at this for convert a dcl to lsp. Compliments to RLX.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Oct 2024 02:26:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13077898#M8104</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2024-10-11T02:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Autolisp file to my Dialog box file</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13084143#M8105</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15502947"&gt;@christian_paulsen98V29&lt;/a&gt;&amp;nbsp;This is how I learned how to write it in AutoLISP.&amp;nbsp;&lt;A href="https://www.afralisp.net/dialog-control-language/tutorials/dcl-without-the-dcl-file-part-1.php" target="_blank"&gt;https://www.afralisp.net/dialog-control-language/tutorials/dcl-without-the-dcl-file-part-1.php&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2024 21:05:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/connect-autolisp-file-to-my-dialog-box-file/m-p/13084143#M8105</guid>
      <dc:creator>MrJSmith</dc:creator>
      <dc:date>2024-10-14T21:05:38Z</dc:date>
    </item>
  </channel>
</rss>

