<?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: Select text from the screen and write to the textbox. in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9174851#M81260</link>
    <description>&lt;P&gt;To export contents of one or multiple text (mtext) objects to a file as follows:&lt;/P&gt;&lt;P&gt;1) Select text and mtext objects you want to extract text&lt;/P&gt;&lt;P&gt;2 )Start command text2file&lt;/P&gt;&lt;P&gt;2) If asked for a first time it will ask for destination folder and name of text file basic string (file, textbox)&lt;/P&gt;&lt;P&gt;3) Contents of that text entities will be written&amp;nbsp; to "basicstring1.txt)&lt;/P&gt;&lt;P&gt;4) At the end it opens that file in notepad&lt;/P&gt;&lt;P&gt;If you select unwanted object it won't mater, and it will save you from beeps.&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="pict_out.jpg" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/702983iE2DA241AA64880DA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pict_out.jpg" alt="pict_out.jpg" /&gt;&lt;/span&gt;&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="pict_out_2.jpg" style="width: 240px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/702985iAA295E9357974673/image-size/large?v=v2&amp;amp;px=999" role="button" title="pict_out_2.jpg" alt="pict_out_2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;(defun c:text2file ( / LM:browseforfolder  inittextout f file e i ent ss ty text listout)
; Extract text or mtext object to file
; hak_vz  30.11.2019
;
(defun *error* ()
    (close file) 
    (princ)
)
(defun LM:browseforfolder ( msg dir bit / err fld pth shl slf )
;; Browse for Folder  -  Lee Mac
;; Displays a dialog prompting the user to select a folder.
;; msg - [str] message to display at top of dialog
;; dir - [str] [optional] root directory (or nil)
;; bit - [int] bit-coded flag specifying dialog display settings
;; Returns: [str] Selected folder filepath, else nil.
    (setq err
        (vl-catch-all-apply
            (function
                (lambda ( / app hwd )
                    (if (setq app (vlax-get-acad-object)
                              shl (vla-getinterfaceobject app "shell.application")
                              hwd (vl-catch-all-apply 'vla-get-hwnd (list app))
                              fld (vlax-invoke-method shl 'browseforfolder (if (vl-catch-all-error-p hwd) 0 hwd) msg bit dir)
                        )
                        (setq slf (vlax-get-property fld 'self)
                              pth (vlax-get-property slf 'path)
                              pth (vl-string-right-trim "\\" (vl-string-translate "/" "\\" pth))
                        )
                    )
                )
            )
        )
    )
    (if slf (vlax-release-object slf))
    (if fld (vlax-release-object fld))
    (if shl (vlax-release-object shl))
    (if (vl-catch-all-error-p err)
        (prompt (vl-catch-all-error-message err))
        pth
    )
)

(defun inittextout () ;variables are globals
(setq folderout (LM:browseforfolder "Select a folder" nil 0))
(setq fileoutname (getstring "\nName of output files base &amp;gt;"))
(setq filecounter 0)
(princ)
)

(if (not folderout) (inittextout))

(setq filecounter (1+ filecounter))
(setq f (strcat folderout "/" fileoutname (itoa filecounter) ".txt"))
(setq file (open f "w"))
(setq ss (cadr (ssgetfirst)) i 0)
(while (&amp;lt; i (sslength ss))
(setq e (ssname ss i) ent (entget e))
(setq ty (strcase(cdr (assoc 0 ent)) T))
(setq text (cdr (assoc 1 ent)))
(if (= ty "mtext") 
(while (wcmatch text "*\\P*") (setq text (vl-string-subst "\n" "\\P" text)))
)    
(setq listout (cons text listout))
(setq i (1+ i))
)
(foreach e listout
    (write-line e file)
)
(close file)
(princ (strcat "\nData is writen to " f))&lt;BR /&gt;(startapp "notepad" f)
(princ)
)&lt;/PRE&gt;&lt;P&gt;I hope it works for you. If it does, set this post as a final solution.&lt;/P&gt;</description>
    <pubDate>Sat, 30 Nov 2019 14:47:08 GMT</pubDate>
    <dc:creator>hak_vz</dc:creator>
    <dc:date>2019-11-30T14:47:08Z</dc:date>
    <item>
      <title>Select text from the screen and write to the textbox.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9172311#M81259</link>
      <description>&lt;P&gt;Let the text or mtext objects I select from the screen write to texbox1.text&lt;/P&gt;&lt;P&gt;write next selection to textbox2&lt;/P&gt;&lt;P&gt;write next selection to textbox3&lt;/P&gt;&lt;P&gt;write next selection to textbox4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I click in an empty place, it will beep.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if I choose another object, msgbox"please select text or mtext object"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to do like this.&lt;BR /&gt;Can you help me, please?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2019 16:47:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9172311#M81259</guid>
      <dc:creator>ferhatttcoskun</dc:creator>
      <dc:date>2019-11-28T16:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from the screen and write to the textbox.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9174851#M81260</link>
      <description>&lt;P&gt;To export contents of one or multiple text (mtext) objects to a file as follows:&lt;/P&gt;&lt;P&gt;1) Select text and mtext objects you want to extract text&lt;/P&gt;&lt;P&gt;2 )Start command text2file&lt;/P&gt;&lt;P&gt;2) If asked for a first time it will ask for destination folder and name of text file basic string (file, textbox)&lt;/P&gt;&lt;P&gt;3) Contents of that text entities will be written&amp;nbsp; to "basicstring1.txt)&lt;/P&gt;&lt;P&gt;4) At the end it opens that file in notepad&lt;/P&gt;&lt;P&gt;If you select unwanted object it won't mater, and it will save you from beeps.&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="pict_out.jpg" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/702983iE2DA241AA64880DA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pict_out.jpg" alt="pict_out.jpg" /&gt;&lt;/span&gt;&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="pict_out_2.jpg" style="width: 240px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/702985iAA295E9357974673/image-size/large?v=v2&amp;amp;px=999" role="button" title="pict_out_2.jpg" alt="pict_out_2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;(defun c:text2file ( / LM:browseforfolder  inittextout f file e i ent ss ty text listout)
; Extract text or mtext object to file
; hak_vz  30.11.2019
;
(defun *error* ()
    (close file) 
    (princ)
)
(defun LM:browseforfolder ( msg dir bit / err fld pth shl slf )
;; Browse for Folder  -  Lee Mac
;; Displays a dialog prompting the user to select a folder.
;; msg - [str] message to display at top of dialog
;; dir - [str] [optional] root directory (or nil)
;; bit - [int] bit-coded flag specifying dialog display settings
;; Returns: [str] Selected folder filepath, else nil.
    (setq err
        (vl-catch-all-apply
            (function
                (lambda ( / app hwd )
                    (if (setq app (vlax-get-acad-object)
                              shl (vla-getinterfaceobject app "shell.application")
                              hwd (vl-catch-all-apply 'vla-get-hwnd (list app))
                              fld (vlax-invoke-method shl 'browseforfolder (if (vl-catch-all-error-p hwd) 0 hwd) msg bit dir)
                        )
                        (setq slf (vlax-get-property fld 'self)
                              pth (vlax-get-property slf 'path)
                              pth (vl-string-right-trim "\\" (vl-string-translate "/" "\\" pth))
                        )
                    )
                )
            )
        )
    )
    (if slf (vlax-release-object slf))
    (if fld (vlax-release-object fld))
    (if shl (vlax-release-object shl))
    (if (vl-catch-all-error-p err)
        (prompt (vl-catch-all-error-message err))
        pth
    )
)

(defun inittextout () ;variables are globals
(setq folderout (LM:browseforfolder "Select a folder" nil 0))
(setq fileoutname (getstring "\nName of output files base &amp;gt;"))
(setq filecounter 0)
(princ)
)

(if (not folderout) (inittextout))

(setq filecounter (1+ filecounter))
(setq f (strcat folderout "/" fileoutname (itoa filecounter) ".txt"))
(setq file (open f "w"))
(setq ss (cadr (ssgetfirst)) i 0)
(while (&amp;lt; i (sslength ss))
(setq e (ssname ss i) ent (entget e))
(setq ty (strcase(cdr (assoc 0 ent)) T))
(setq text (cdr (assoc 1 ent)))
(if (= ty "mtext") 
(while (wcmatch text "*\\P*") (setq text (vl-string-subst "\n" "\\P" text)))
)    
(setq listout (cons text listout))
(setq i (1+ i))
)
(foreach e listout
    (write-line e file)
)
(close file)
(princ (strcat "\nData is writen to " f))&lt;BR /&gt;(startapp "notepad" f)
(princ)
)&lt;/PRE&gt;&lt;P&gt;I hope it works for you. If it does, set this post as a final solution.&lt;/P&gt;</description>
      <pubDate>Sat, 30 Nov 2019 14:47:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9174851#M81260</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2019-11-30T14:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from the screen and write to the textbox.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9174948#M81261</link>
      <description>&lt;P&gt;If extracting data from a complex MTEXT object is not correct, you may temporary explode mtext object.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the text string is less than 250 characters, all characters appear in group 1. If the text string is greater than 250 characters, the string is divided into 250-character chunks, which appear in one or more group 3 codes. If group 3 codes are used, the last group is a group 1 and has fewer than 250 character. Taking into account all formatting would be too complex.&lt;/P&gt;</description>
      <pubDate>Sat, 30 Nov 2019 17:33:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9174948#M81261</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2019-11-30T17:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from the screen and write to the textbox.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9175036#M81262</link>
      <description>&lt;P&gt;&lt;EM&gt;Here is my final code that works OK with TEXT and MTEXT entities with strings with more than 250 characters. &lt;/EM&gt;&lt;/P&gt;&lt;PRE&gt;(defun c:text2file ( / LM:browseforfolder  inittextout f file e i m ent ss ty text endtext  txts listout);
(vl-load-com)
; Extract text or mtext object to file
; hak_vz  30.11.2019
;
(defun *error* ()
    (close file) 
    (princ)
)

(defun LM:browseforfolder ( msg dir bit / err fld pth shl slf )
;; Browse for Folder  -  Lee Mac
;; Displays a dialog prompting the user to select a folder.
;; msg - [str] message to display at top of dialog
;; dir - [str] [optional] root directory (or nil)
;; bit - [int] bit-coded flag specifying dialog display settings
;; Returns: [str] Selected folder filepath, else nil.
    (setq err
        (vl-catch-all-apply
            (function
                (lambda ( / app hwd )
                    (if (setq app (vlax-get-acad-object)
                              shl (vla-getinterfaceobject app "shell.application")
                              hwd (vl-catch-all-apply 'vla-get-hwnd (list app))
                              fld (vlax-invoke-method shl 'browseforfolder (if (vl-catch-all-error-p hwd) 0 hwd) msg bit dir)
                        )
                        (setq slf (vlax-get-property fld 'self)
                              pth (vlax-get-property slf 'path)
                              pth (vl-string-right-trim "\\" (vl-string-translate "/" "\\" pth))
                        )
                    )
                )
            )
        )
    )
    (if slf (vlax-release-object slf))
    (if fld (vlax-release-object fld))
    (if shl (vlax-release-object shl))
    (if (vl-catch-all-error-p err)
        (prompt (vl-catch-all-error-message err))
        pth
    )
)

(defun inittextout () ;variables are globals
(setq folderout (LM:browseforfolder "Select a folder" nil 0))
(setq fileoutname (getstring "\nName of output files base &amp;gt;"))
(setq filecounter 0)
(princ)
)

(if (not folderout) (inittextout))

(setq filecounter (1+ filecounter))
(setq f (strcat folderout "/" fileoutname (itoa filecounter) ".txt"))
(setq file (open f "w"))
(setq ss (cadr (ssgetfirst)) i 0)
(while (&amp;lt; i (sslength ss))
(setq e (ssname ss i) ent (entget e))
(setq ty (strcase(cdr (assoc 0 ent)) T))
(if (= ty "text")
    (setq text (cdr (assoc 1 ent)))
)

(if (= ty "mtext")
    (progn
        (if (not (and(assoc 3 ent))) 
            (progn
                (setq text (cdr (assoc 1 ent)))
                (while (wcmatch text "*\\P*") (setq text (vl-string-subst "\n" "\\P" text)))
            )
            (progn
                (setq endtext (cdr (assoc 1 ent)))
                (cond (ent
                         (while (setq m (assoc 3 ent) ent (cdr (member m ent)))
                           (setq txts (cons (cdr m) txts))
                         )
                        )
                )
                (setq text "" txts (reverse txts))
                (foreach tx txts
                    (setq text (strcat text tx))
                )
            (setq text (strcat text endtext) endtext nil)
            (while (wcmatch text "*\\P*") (setq text (vl-string-subst "\n" "\\P" text)))
            )      
        )
    )
 
)

(setq listout (cons text listout))
(setq i (1+ i))
)
(setq text nil)
(foreach e listout
    (write-line e file)
)
(close file)
(princ (strcat "\nData is writen to " f))
(startapp "notepad" f)
(princ)
)&lt;/PRE&gt;</description>
      <pubDate>Sat, 30 Nov 2019 19:31:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9175036#M81262</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2019-11-30T19:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from the screen and write to the textbox.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9177243#M81263</link>
      <description>&lt;PRE&gt;Private Function PickText() As String

    Dim ent As AcadEntity
    Dim pt As Variant
    Dim txtEnt As AcadText
    Dim mtxtEnt As AcadMText
    Dim go As Boolean
    
    Dim val As String
    
    On Error Resume Next
    
    Do
        go = False
        ThisDrawing.Utility.GetEntity ent, pt, vbCrLf &amp;amp; "Select a TEX/MText object:"
        
        If Err.Number &amp;lt;&amp;gt; 0 Then
            '' user pressed Esc, or clicked an empty location
            PickText = ""
            Exit Function
        End If
        
        If TypeOf ent Is AcadText Then
            Set txtEnt = ent
            val = txtEnt.TextString
        ElseIf TypeOf ent Is AcadMText Then
            Set mtxtEnt = ent
            val = mtxtEnt.TextString
        Else
            go = True
            ThisDrawing.Utility.Prompt vbCrLf &amp;amp; _
                "invalid selection: must be Text/MText object!" &amp;amp; vbCrLf
        End If
    
    Loop While go
    
    PickText = val
    
End Function&lt;/PRE&gt;</description>
      <pubDate>Mon, 02 Dec 2019 14:43:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9177243#M81263</guid>
      <dc:creator>ferhatttcoskun</dc:creator>
      <dc:date>2019-12-02T14:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from the screen and write to the textbox.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9177362#M81264</link>
      <description>&lt;P&gt;Does this really solve your problem?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2019 15:30:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9177362#M81264</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2019-12-02T15:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from the screen and write to the textbox.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9177367#M81265</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8275763"&gt;@ferhatttcoskun&lt;/a&gt;&amp;nbsp;You ask a question in the AutoLisp forum, you get your solution from&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5530556"&gt;@hak_vz&lt;/a&gt;&amp;nbsp;. Yet you ignore him and post a piece of code, written in a different language, that does nothing more, than set a variable and mark it as a solution...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is at best misleading to someone, who might be searching for the same solution.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2019 15:32:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9177367#M81265</guid>
      <dc:creator>doaiena</dc:creator>
      <dc:date>2019-12-02T15:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from the screen and write to the textbox.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9177414#M81266</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8275763"&gt;@ferhatttcoskun&lt;/a&gt;&amp;nbsp; asked the same question on visual basic forum and was given this solution by &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/543921"&gt;@norman.yuan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="Select text from the screen and write to the textbox" href="https://forums.autodesk.com/t5/visual-basic-customization/select-text-from-the-screen-and-write-to-the-textbox/m-p/9177262#M103360" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/visual-basic-customization/select-text-from-the-screen-and-write-to-the-textbox/m-p/9177262#M103360&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2019 15:52:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9177414#M81266</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2019-12-02T15:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from the screen and write to the textbox.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9177464#M81267</link>
      <description>&lt;P&gt;Well, it looks like i have misinterpreted the objective.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2019 16:10:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9177464#M81267</guid>
      <dc:creator>doaiena</dc:creator>
      <dc:date>2019-12-02T16:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from the screen and write to the textbox.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9177630#M81268</link>
      <description>&lt;P&gt;It is a question asked in a wrong forum. For someone who want to use it to extract text (mtext) into a textbox (application) it is a correct answer. If you want to use it instantly in everyday work, that's another story.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2019 17:09:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9177630#M81268</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2019-12-02T17:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from the screen and write to the textbox.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9178798#M81269</link>
      <description>&lt;P&gt;I may have asked the question in the wrong place.&lt;BR /&gt;Thank you for your interest.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 06:10:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9178798#M81269</guid>
      <dc:creator>ferhatttcoskun</dc:creator>
      <dc:date>2019-12-03T06:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Select text from the screen and write to the textbox.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9178833#M81270</link>
      <description>&lt;P&gt;In case you received a solution from someone else, make a link to that post in other forum and explain what you really asked, and why this is a solution.&lt;/P&gt;&lt;P&gt;It was a nice weekend making this, but I'll makethis code useful to myself.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 06:42:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-text-from-the-screen-and-write-to-the-textbox/m-p/9178833#M81270</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2019-12-03T06:42:21Z</dc:date>
    </item>
  </channel>
</rss>

