<?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: Having problem identifying the function for this code any tips to stop error. in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13727342#M165250</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/17481304"&gt;@thomas_huntFMPXR&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;;; Get Datalinks dictionary&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;setq&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;datalinkDict (vla-GetDataLinks (&lt;/SPAN&gt;&lt;SPAN&gt;vla-Get-ActiveDocument&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;(&lt;/SPAN&gt;&lt;SPAN&gt;vlax-get-acad-object&lt;/SPAN&gt;&lt;SPAN&gt;))))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;This call is not valid in autolisp activex so from here your error in coming.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;on the other hand using (command "datalink") also won't help because DATALINK has no command line interface.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Moshe&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
    <pubDate>Wed, 16 Jul 2025 13:11:33 GMT</pubDate>
    <dc:creator>Moshe-A</dc:creator>
    <dc:date>2025-07-16T13:11:33Z</dc:date>
    <item>
      <title>Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13719911#M165165</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;defun&lt;/SPAN&gt;&lt;SPAN&gt; c:2 ( / file dlg datalinkName datalinkDict datalinkObj insPt range )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;vl-load-com&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;;;select Excel file&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;setq&lt;/SPAN&gt;&lt;SPAN&gt; file (&lt;/SPAN&gt;&lt;SPAN&gt;getfiled&lt;/SPAN&gt; &lt;SPAN&gt;"Select Excel File"&lt;/SPAN&gt; &lt;SPAN&gt;""&lt;/SPAN&gt; &lt;SPAN&gt;"xlsx"&lt;/SPAN&gt; &lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; file&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;progn&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;;; Get Datalinks dictionary&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;setq&lt;/SPAN&gt;&lt;SPAN&gt; datalinkDict (vla-GetDataLinks (&lt;/SPAN&gt;&lt;SPAN&gt;vla-Get-ActiveDocument&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;vlax-get-acad-object&lt;/SPAN&gt;&lt;SPAN&gt;))))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;;; Create new datalink&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;setq&lt;/SPAN&gt;&lt;SPAN&gt; datalinkObj (&lt;/SPAN&gt;&lt;SPAN&gt;vla-Add&lt;/SPAN&gt;&lt;SPAN&gt; datalinkDict datalinkName file))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;;; Optional: prompt for range&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;setq&lt;/SPAN&gt;&lt;SPAN&gt; range (&lt;/SPAN&gt;&lt;SPAN&gt;getstring&lt;/SPAN&gt; &lt;SPAN&gt;T&lt;/SPAN&gt; &lt;SPAN&gt;"\nEnter Excel range (e.g., Sheet1!A1:D10) or press Enter for full sheet: "&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;;; Set the data range if provided&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (&amp;gt; (&lt;/SPAN&gt;&lt;SPAN&gt;strlen&lt;/SPAN&gt;&lt;SPAN&gt; range) &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (vla-SetDataLinkRange datalinkObj range)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;;; Prompt for insertion point&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;setq&lt;/SPAN&gt;&lt;SPAN&gt; insPt (&lt;/SPAN&gt;&lt;SPAN&gt;getpoint&lt;/SPAN&gt; &lt;SPAN&gt;"\nSpecify insertion point for the table: "&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;;; Insert table from datalink&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;command&lt;/SPAN&gt; &lt;SPAN&gt;"_-TABLE"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"DATALINK"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;datalinkName&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(&lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (&amp;gt; (&lt;/SPAN&gt;&lt;SPAN&gt;strlen&lt;/SPAN&gt;&lt;SPAN&gt; range) &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;SPAN&gt;"Y"&lt;/SPAN&gt; &lt;SPAN&gt;"N"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(&lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (&amp;gt; (&lt;/SPAN&gt;&lt;SPAN&gt;strlen&lt;/SPAN&gt;&lt;SPAN&gt; range) &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;) range &lt;/SPAN&gt;&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;insPt&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;prompt&lt;/SPAN&gt; &lt;SPAN&gt;"\nNo file selected."&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;princ&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 10 Jul 2025 19:00:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13719911#M165165</guid>
      <dc:creator>thomas_huntFMPXR</dc:creator>
      <dc:date>2025-07-10T19:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13719957#M165166</link>
      <description>&lt;P&gt;where you got this code from should include information on what it does.&lt;/P&gt;&lt;P&gt;also did you read the comments in the code which explains what each step does?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 19:28:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13719957#M165166</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-07-10T19:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13720275#M165167</link>
      <description>&lt;P&gt;And &lt;EM&gt;what is the error&lt;/EM&gt; mentioned in the Topic heading, that you want to stop?&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 01:26:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13720275#M165167</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2025-07-11T01:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13721023#M165168</link>
      <description>&lt;P&gt;Function not identified after the selecting the excel file.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 12:23:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13721023#M165168</guid>
      <dc:creator>thomas_huntFMPXR</dc:creator>
      <dc:date>2025-07-11T12:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13721026#M165169</link>
      <description>&lt;P&gt;Yes this portion of the code doesn't work the way it says it should "&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;setq&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;datalinkDict (vla-GetDataLinks (&lt;/SPAN&gt;&lt;SPAN&gt;vla-Get-ActiveDocument&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;(&lt;/SPAN&gt;&lt;SPAN&gt;vlax-get-acad-object&lt;/SPAN&gt;&lt;SPAN&gt;))))."&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 12:25:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13721026#M165169</guid>
      <dc:creator>thomas_huntFMPXR</dc:creator>
      <dc:date>2025-07-11T12:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13721099#M165170</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;why should vla-GetDataLinks&amp;nbsp; and vla-SetDataLinkRange work?&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.autodesk.com/view/ACD/2026/DEU/?guid=GUID-9216BFCD-D358-4FC6-B631-B52E6693D242" target="_blank" rel="noopener"&gt;[F1] Document&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 11 Jul 2025 13:02:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13721099#M165170</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2025-07-11T13:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13721309#M165171</link>
      <description>&lt;P&gt;it needs to activate datalink command to connect the path to taband range in order to complete the datalink and insert the table.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 15:15:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13721309#M165171</guid>
      <dc:creator>thomas_huntFMPXR</dc:creator>
      <dc:date>2025-07-11T15:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13726428#M165240</link>
      <description>&lt;P&gt;I can't follow you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From where is that code?&lt;/P&gt;&lt;P&gt;If it is from AI, ask your AI what's going on!?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 21:24:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13726428#M165240</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2025-07-15T21:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13727285#M165247</link>
      <description>&lt;P&gt;AI has no solution. I would like the datalink to connect to new file and then create a table based on the datalink that was just established.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 12:43:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13727285#M165247</guid>
      <dc:creator>thomas_huntFMPXR</dc:creator>
      <dc:date>2025-07-16T12:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13727311#M165248</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@cadffm&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;From where is that code&lt;FONT size="5"&gt;?&lt;/FONT&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 12:56:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13727311#M165248</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2025-07-16T12:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13727342#M165250</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/17481304"&gt;@thomas_huntFMPXR&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;;; Get Datalinks dictionary&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;setq&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;datalinkDict (vla-GetDataLinks (&lt;/SPAN&gt;&lt;SPAN&gt;vla-Get-ActiveDocument&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;(&lt;/SPAN&gt;&lt;SPAN&gt;vlax-get-acad-object&lt;/SPAN&gt;&lt;SPAN&gt;))))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;This call is not valid in autolisp activex so from here your error in coming.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;on the other hand using (command "datalink") also won't help because DATALINK has no command line interface.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Moshe&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Wed, 16 Jul 2025 13:11:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13727342#M165250</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2025-07-16T13:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13727604#M165255</link>
      <description>&lt;P&gt;Alright, is there a lisp code that creates a table from the datalink data? All the codes I found create a empty table with no information.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 15:54:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13727604#M165255</guid>
      <dc:creator>thomas_huntFMPXR</dc:creator>
      <dc:date>2025-07-16T15:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13727789#M165256</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/17481304"&gt;@thomas_huntFMPXR&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you have excel file linked into AutoCAD with DATALINK,&amp;nbsp;you can insert it using TABLE command.&amp;nbsp;can you explain why you need lisp to to that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Moshe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 18:01:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13727789#M165256</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2025-07-16T18:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13727865#M165259</link>
      <description>&lt;P&gt;Wanted a to create a shortcut to limit confusion when inserting new tables. my company operates with 10+ datalink tables at a time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 19:04:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13727865#M165259</guid>
      <dc:creator>thomas_huntFMPXR</dc:creator>
      <dc:date>2025-07-16T19:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13728230#M165265</link>
      <description>&lt;P&gt;Not tested but may be useful.&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>Fri, 18 Jul 2025 02:02:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13728230#M165265</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-07-18T02:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13729060#M165268</link>
      <description>&lt;P&gt;Tested it out. had to change the defun command and change the file selection for excel. but this syntax error and server returned error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jul 2025 14:19:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13729060#M165268</guid>
      <dc:creator>thomas_huntFMPXR</dc:creator>
      <dc:date>2025-07-17T14:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13730060#M165295</link>
      <description>&lt;P&gt;I did find a typo in the code as I suggested I did not test, but I have now table is being made but link is not being established, will look into it more why not working.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jul 2025 02:04:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13730060#M165295</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-07-18T02:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13730876#M165301</link>
      <description>&lt;P&gt;yeah thank I will tinker with it some more as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jul 2025 13:06:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13730876#M165301</guid>
      <dc:creator>thomas_huntFMPXR</dc:creator>
      <dc:date>2025-07-18T13:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13731872#M165333</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/17481304"&gt;@thomas_huntFMPXR&lt;/a&gt;&amp;nbsp;hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here you go with TableFromDataLink (insert table from assign datalink)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I notice a problem (&lt;SPAN&gt;on and off) with inserting a table using TABLE command (not the lisp)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;anyway if it works, you will see a big delay, this is OK, it takes time to AutoCAD to insert excel table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;enjoy&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Moshe&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Jul 2025 08:52:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13731872#M165333</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2025-07-19T08:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Having problem identifying the function for this code any tips to stop error.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13732474#M165338</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/52747"&gt;@Moshe-A&lt;/a&gt;&amp;nbsp;gave it a try, but I think the idea is to not use dialog boxes but rather know the Excel file name and maybe the desired range. Just a ps did not work on my Bricscad V25. Just opens a new Blank Excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Will go back to other code has a cons error, problem is so many of them.&lt;/P&gt;</description>
      <pubDate>Sun, 20 Jul 2025 06:40:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/having-problem-identifying-the-function-for-this-code-any-tips/m-p/13732474#M165338</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-07-20T06:40:40Z</dc:date>
    </item>
  </channel>
</rss>

