<?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: Alternative for dos_editbox? in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8212468#M100837</link>
    <description>&lt;P&gt;If sharing to the community is the idea behind this project, i wouldn't mind helping out if i can. I have taken the liberty to prepare an OpenDCL dialog for you, even though you said you weren't interested in&amp;nbsp;adding more dependencies. If not you, maybe someone else in the forum will make use of this code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- All the files must be extracted to an AutoCAD Support File Search Path&lt;/P&gt;&lt;P&gt;- ScriptEditor.lsp is the ODCL dialog (it can be embedded in the lisp code if needed)&lt;/P&gt;&lt;P&gt;- Editor.lsp contains the code behind the dialog and an autoloader for the ODCL runtime (you can use&amp;nbsp;the autoloader function as a template to load DOSLib if needed)&lt;/P&gt;&lt;P&gt;- All other files are related to OpenDCL&lt;/P&gt;&lt;P&gt;- The dialog should work on all versions of AutoCAD from 2007 up to 2018 (&lt;STRONG&gt;2019 not included&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;- You said that DOSLib is part of this project, so i have made use of some DOSLib functions in my lisp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a preview of the lisp:&lt;/P&gt;&lt;PRE&gt;(defun c:test ( / )

(if (LoadODCL)
(progn

;Import
(defun c:dcl_import_OnClicked ( / file text )
  (if (setq file (dos_getfiled "Select a file" "C:\\" "Lisp files (*.lsp)|*.lsp|Script files (*.scr)|*.scr|All files (*.*)|*.*||"))
  (progn
    (setq text (apply 'strcat (mapcar '(lambda (x) (strcat (if (equal x nil) "\r\n" x) "\r\n")) (dos_readtextfile file nil nil))))
    (dcl_Control_SetText dcl_textBox text)
  ))
)

;Export
(defun c:dcl_export_OnClicked (/)
  (dcl_MessageBox "To Do: code must be added to event handler\r\nc:dcl_export_OnClicked" "To do")
)

;Clear
(defun c:dcl_clear_OnClicked (/)
  (dcl_Control_SetText dcl_textBox "")
)

;OK
(defun c:dcl_ok_OnClicked (/)
  (dcl_MessageBox "To Do: code must be added to event handler\r\nc:dcl_ok_OnClicked" "To do")
  (dcl_Form_Close Form_Editor 1)
)

;Cancel
(defun c:dcl_cancel_OnClicked (/)
  (dcl_MessageBox "To Do: code must be added to event handler\r\nc:dcl_cancel_OnClicked" "To do")
  (dcl_Form_Close Form_Editor 2)
)


(dcl_Project_Import (load "ScriptEditor.lsp"))
(dcl_Form_Show Form_Editor)
)
(alert "The proper OpenDCL runtime for your version of AutoCAD was not found.")
);if ODCL is loaded

(princ)
);defun



(defun LoadODCL ( / platform odcl )

(if (vl-string-search "(x64)" (getvar "platform"))
(setq platform ".x64")
(setq platform "")
)

(setq odcl (strcat "OpenDCL" platform "." (substr (getvar "acadver") 1 2) ".arx"))
(if (and (not (member odcl (arx))) (findfile odcl))
(progn
(arxload (vl-string-trim "." odcl))
(vl-arx-import odcl)
T
)
nil
)
);defun&lt;/PRE&gt;</description>
    <pubDate>Mon, 20 Aug 2018 21:42:32 GMT</pubDate>
    <dc:creator>doaiena</dc:creator>
    <dc:date>2018-08-20T21:42:32Z</dc:date>
    <item>
      <title>Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8210997#M100832</link>
      <description>&lt;P&gt;I'm almost done (re)creating my multifile tool, but I came up with one more addition to it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In short: I'm creating a tool allowing users to select drawings in various ways for processing.&lt;/P&gt;&lt;P&gt;Currently user can select a lisp file to be loaded with each drawing. This alone allows users to do virtually anything to a selection of drawings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, as lisp's can be auto loaded with each drawing, or a lisp is not always required, running a single command (or an entire batch) might be enough in many cases.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For this I wish to add the option to add commands (to a script) and run that with each drawing. For the edit-box I'm currently using the DOSLIB dos-editbox function (see picture), as it's the only one I can find to do the trick.&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="dos_editbox" style="width: 341px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/536597iEF386B61E859F650/image-size/large?v=v2&amp;amp;px=999" role="button" title="dos_editbox.jpg" alt="dos_editbox" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;dos_editbox&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I read a fixed script file (used by the function), feed it's content to the dos-editbox and upon close (by pressing OK) the (new) content will be saved to that same script file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, it comes with a&amp;nbsp;few drawbacks.&lt;/P&gt;&lt;P&gt;- There is no 'clear' option.&lt;/P&gt;&lt;P&gt;- I'm missing an Export.../Save as... button. Would be nice to be able to export it to a file.&lt;/P&gt;&lt;P&gt;- The Import button defaults to .txt files, with all files (*.*) as an extra option. I'd love to add .scr and .lsp to the files...&lt;/P&gt;&lt;P&gt;...but the editbox is fixed when it comes to all that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Does anybody here know of any alternative, that will do the same (allowing to edit a multiline string in a window (containing script and/or lisp code)), including the above mentioned extra options? (one that does not require another .arx or add-on prefered)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've done some searching, but can't find any. So I don't think there is an alternative (&amp;amp; I'll have to settle for what it is now), but I've been proven wrong before here &lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://forums.autodesk.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 13:05:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8210997#M100832</guid>
      <dc:creator>roland.r71</dc:creator>
      <dc:date>2018-08-20T13:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8211892#M100833</link>
      <description>&lt;P&gt;I know you said you don't want to add more *.arx files, but i would strongly suggest you take a look at&amp;nbsp;&lt;A href="http://opendcl.com" target="_blank"&gt;OpenDCL&lt;/A&gt;. It's very flexible and allows&amp;nbsp;for a&amp;nbsp;wide range of functionality.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 18:00:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8211892#M100833</guid>
      <dc:creator>doaiena</dc:creator>
      <dc:date>2018-08-20T18:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8211914#M100834</link>
      <description>&lt;P&gt;Although I wouldn't mind personally, the idea is to share it, with who ever wants it, right here on the forum (&amp;amp; beyond)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It already depends heavily on DOSlib as a must have requirement, and I did my best to completely avoid using anything acetutil.arx.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So vanilla ACAD + DOSlib &amp;amp; your good to go for my tool. Adding another .arx requirement will only make it less accessible to other people.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 18:09:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8211914#M100834</guid>
      <dc:creator>roland.r71</dc:creator>
      <dc:date>2018-08-20T18:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8211976#M100835</link>
      <description>&lt;P&gt;Well, in that case i suppose you could give&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;dos_htmldialog&lt;/STRONG&gt;&lt;/EM&gt; a try, but it's going to require a lot more work.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 18:28:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8211976#M100835</guid>
      <dc:creator>doaiena</dc:creator>
      <dc:date>2018-08-20T18:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8212018#M100836</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1166654"&gt;@doaiena&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Well, in that case i suppose you could give&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;dos_htmldialog&lt;/STRONG&gt;&lt;/EM&gt; a try, but it's going to require a lot more work.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yeah, I already thought about that one, for about 30sec.&lt;/P&gt;&lt;P&gt;Way to much &amp;amp; complicated for now. Maybe for a next version.&lt;/P&gt;&lt;P&gt;&amp;amp; as standard DCL won't cut it, afaik, I don't see many options for the moment. Just hoping I'm missing something.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 18:42:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8212018#M100836</guid>
      <dc:creator>roland.r71</dc:creator>
      <dc:date>2018-08-20T18:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8212468#M100837</link>
      <description>&lt;P&gt;If sharing to the community is the idea behind this project, i wouldn't mind helping out if i can. I have taken the liberty to prepare an OpenDCL dialog for you, even though you said you weren't interested in&amp;nbsp;adding more dependencies. If not you, maybe someone else in the forum will make use of this code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- All the files must be extracted to an AutoCAD Support File Search Path&lt;/P&gt;&lt;P&gt;- ScriptEditor.lsp is the ODCL dialog (it can be embedded in the lisp code if needed)&lt;/P&gt;&lt;P&gt;- Editor.lsp contains the code behind the dialog and an autoloader for the ODCL runtime (you can use&amp;nbsp;the autoloader function as a template to load DOSLib if needed)&lt;/P&gt;&lt;P&gt;- All other files are related to OpenDCL&lt;/P&gt;&lt;P&gt;- The dialog should work on all versions of AutoCAD from 2007 up to 2018 (&lt;STRONG&gt;2019 not included&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;- You said that DOSLib is part of this project, so i have made use of some DOSLib functions in my lisp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a preview of the lisp:&lt;/P&gt;&lt;PRE&gt;(defun c:test ( / )

(if (LoadODCL)
(progn

;Import
(defun c:dcl_import_OnClicked ( / file text )
  (if (setq file (dos_getfiled "Select a file" "C:\\" "Lisp files (*.lsp)|*.lsp|Script files (*.scr)|*.scr|All files (*.*)|*.*||"))
  (progn
    (setq text (apply 'strcat (mapcar '(lambda (x) (strcat (if (equal x nil) "\r\n" x) "\r\n")) (dos_readtextfile file nil nil))))
    (dcl_Control_SetText dcl_textBox text)
  ))
)

;Export
(defun c:dcl_export_OnClicked (/)
  (dcl_MessageBox "To Do: code must be added to event handler\r\nc:dcl_export_OnClicked" "To do")
)

;Clear
(defun c:dcl_clear_OnClicked (/)
  (dcl_Control_SetText dcl_textBox "")
)

;OK
(defun c:dcl_ok_OnClicked (/)
  (dcl_MessageBox "To Do: code must be added to event handler\r\nc:dcl_ok_OnClicked" "To do")
  (dcl_Form_Close Form_Editor 1)
)

;Cancel
(defun c:dcl_cancel_OnClicked (/)
  (dcl_MessageBox "To Do: code must be added to event handler\r\nc:dcl_cancel_OnClicked" "To do")
  (dcl_Form_Close Form_Editor 2)
)


(dcl_Project_Import (load "ScriptEditor.lsp"))
(dcl_Form_Show Form_Editor)
)
(alert "The proper OpenDCL runtime for your version of AutoCAD was not found.")
);if ODCL is loaded

(princ)
);defun



(defun LoadODCL ( / platform odcl )

(if (vl-string-search "(x64)" (getvar "platform"))
(setq platform ".x64")
(setq platform "")
)

(setq odcl (strcat "OpenDCL" platform "." (substr (getvar "acadver") 1 2) ".arx"))
(if (and (not (member odcl (arx))) (findfile odcl))
(progn
(arxload (vl-string-trim "." odcl))
(vl-arx-import odcl)
T
)
nil
)
);defun&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Aug 2018 21:42:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8212468#M100837</guid>
      <dc:creator>doaiena</dc:creator>
      <dc:date>2018-08-20T21:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8231157#M100838</link>
      <description>&lt;P&gt;I started something (DCL interface only) back in 2013 for someone else that had a similar inquiry:&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="EditList01.gif" style="width: 314px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/540065iD5C37E4A5BC38686/image-size/large?v=v2&amp;amp;px=999" role="button" title="EditList01.gif" alt="EditList01.gif" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have since recreated the above in part for another program that I am currently developing.&lt;/P&gt;
&lt;P&gt;However, at this time, the storage/retrieval parser of the list is not yet developed&lt;/P&gt;
&lt;P&gt;(current thought is CSV in a INI or registry?)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;???&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2018 22:47:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8231157#M100838</guid>
      <dc:creator>scot-65</dc:creator>
      <dc:date>2018-08-28T22:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8231540#M100839</link>
      <description>&lt;P&gt;That's exactly the same technique I'm currently implementing for my "filelist". Found some Lee Mac tutorials to do it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using a regular textfile for the list. Much like a csv with only one column. My settings, or user preference, I store inside a ini file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Works like a charm &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Aug 2018 05:34:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8231540#M100839</guid>
      <dc:creator>roland.r71</dc:creator>
      <dc:date>2018-08-29T05:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8231824#M100840</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4682962"&gt;@roland.r71&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Instead if using&amp;nbsp;&lt;SPAN&gt;DOSLIB dos-editbox function why not making your own edit box?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;It is not that&lt;SPAN&gt; hard to do in Visual lisp right?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Maybe i dont know enough about your program but for me it looks like you could make your own dcl edit box&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Aug 2018 07:57:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8231824#M100840</guid>
      <dc:creator>DGRL</dc:creator>
      <dc:date>2018-08-29T07:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8231888#M100841</link>
      <description>&lt;P&gt;Take a look &lt;A href="https://www.theswamp.org/index.php?topic=53857.msg585191#msg585191" target="_blank"&gt;HERE&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Aug 2018 08:38:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8231888#M100841</guid>
      <dc:creator>dlanorh</dc:creator>
      <dc:date>2018-08-29T08:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8232619#M100842</link>
      <description>Afaik, there is no DCL edit box which allows loading &amp;amp; editing (incl.&lt;BR /&gt;CTRL+C &amp;amp; CTRL+V) of a multiline text file (or .scr file in this case)&lt;BR /&gt;&lt;BR /&gt;For a better understanding of what I need it for, you can check my "need&lt;BR /&gt;help testing ..." topic, where it is discussed in depth&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Aug 2018 13:46:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8232619#M100842</guid>
      <dc:creator>roland.r71</dc:creator>
      <dc:date>2018-08-29T13:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8232638#M100843</link>
      <description>&lt;P&gt;I did, but I get only a warning.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"The topic or board you are looking for appears to be either missing or off limits to you."&lt;/P&gt;</description>
      <pubDate>Wed, 29 Aug 2018 13:51:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8232638#M100843</guid>
      <dc:creator>roland.r71</dc:creator>
      <dc:date>2018-08-29T13:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8233246#M100844</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="listbuild pic.PNG" style="width: 519px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/540432iC04F4B05D8204AE4/image-size/large?v=v2&amp;amp;px=999" role="button" title="listbuild pic.PNG" alt="listbuild pic.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll assume you need to be a member to access the particular board at the Swamp. I've included the png so you can see if it is useful. Membership is free, you just need to register.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Aug 2018 17:01:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8233246#M100844</guid>
      <dc:creator>dlanorh</dc:creator>
      <dc:date>2018-08-29T17:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8233478#M100845</link>
      <description>&lt;P&gt;Looks perfect for collecting info from blocks, but what I'm looking for is more like a multiline text editor. One where you could copy a piece of code from a script and paste it into the editor, move around the cursor, etc. as if your using notepad. It's very purpose being to enter a (short) script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using any kind of list type editing would make some of that impossible or at least extremely difficult, and brings a few problems of its own.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using DOSlib extensively within the bigger function this is part off, so that's not the problem. The edit box used fits &amp;amp; performs quite nicely, but it lacks a few features.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unless I am missing something, it would require a lot of complex coding to come close to what I want, using any list based editor. Such code might be out there, in which case I would gladely take look, but I'm inclined to settle for the lack in options instead of going on a mission impossible. (for me &amp;amp; my limited knowledge on visual lisp)&lt;/P&gt;</description>
      <pubDate>Wed, 29 Aug 2018 18:17:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8233478#M100845</guid>
      <dc:creator>roland.r71</dc:creator>
      <dc:date>2018-08-29T18:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative for dos_editbox?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8233678#M100846</link>
      <description>OK. I don't use DOSlib so I can't help, but I'll keep my eyes open.</description>
      <pubDate>Wed, 29 Aug 2018 19:43:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/alternative-for-dos-editbox/m-p/8233678#M100846</guid>
      <dc:creator>dlanorh</dc:creator>
      <dc:date>2018-08-29T19:43:22Z</dc:date>
    </item>
  </channel>
</rss>

