<?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: Use SendCommand() as lisp's 'command in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250080#M19871</link>
    <description>&amp;gt;&amp;gt;You may also care to read some of Tony's posts of the difficulty of using &lt;BR /&gt;
.NET with AutoCAD before making your decision..&lt;BR /&gt;
&lt;BR /&gt;
If you use the API methods it is. In this case of just pushing commands to the commandline it would be easier than VBA.</description>
    <pubDate>Fri, 09 May 2008 00:38:19 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-05-09T00:38:19Z</dc:date>
    <item>
      <title>Use SendCommand() as lisp's 'command</title>
      <link>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250072#M19863</link>
      <description>Hi&lt;BR /&gt;
&lt;BR /&gt;
How can I use VBA's SendCommand the same way I use lisp's 'command?&lt;BR /&gt;
&lt;BR /&gt;
I want to be able to do something like:&lt;BR /&gt;
SendCommand("circle")&lt;BR /&gt;
SendCommand("2,3")&lt;BR /&gt;
SendCommand("100")&lt;BR /&gt;
&lt;BR /&gt;
And have it draw a circle. The problem is, when I try the second command, I get an exception with the HRESULT 0x80010001 (RPC_E_CALL_REJECTED)&lt;BR /&gt;
&lt;BR /&gt;
I also can't just do a front-end and keep accumulating the strings until a "" because it won't work.&lt;BR /&gt;
&lt;BR /&gt;
Also, how can I pass an acadpoint as a parameter to command?&lt;BR /&gt;
For example:&lt;BR /&gt;
Dim p1 as AcadPoint = ThisDrawing.AddPoint(new Double() {2, 3, 0})&lt;BR /&gt;
&lt;BR /&gt;
SendCommand("circle")&lt;BR /&gt;
SendCommand(p1)  ' ???&lt;BR /&gt;
SendCommand("100")&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the help&lt;BR /&gt;
&lt;BR /&gt;
  - Filipe Cabecinhas</description>
      <pubDate>Wed, 07 May 2008 21:08:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250072#M19863</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-05-07T21:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: Use SendCommand() as lisp's 'command</title>
      <link>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250073#M19864</link>
      <description>Hi&lt;BR /&gt;
&lt;BR /&gt;
I forgot to mention why I'm using SendCommand().&lt;BR /&gt;
&lt;BR /&gt;
I'm porting a huge lisp codebase to VB and would like to have it working with a minimum fuss. After that, we would clean it up.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the help,&lt;BR /&gt;
&lt;BR /&gt;
  - Filipe Cabecinhas</description>
      <pubDate>Wed, 07 May 2008 21:25:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250073#M19864</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-05-07T21:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Use SendCommand() as lisp's 'command</title>
      <link>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250074#M19865</link>
      <description>Hi Filipe,&lt;BR /&gt;
&lt;BR /&gt;
It will take you longer and cost you far more to attempt to do this than it &lt;BR /&gt;
will to do it properly in the first place.&lt;BR /&gt;
&lt;BR /&gt;
Look at the concept of doing it in small quantities of code at a time.&lt;BR /&gt;
&lt;BR /&gt;
Try copying the lisp code into the VBA Editor and some "search and replace" &lt;BR /&gt;
items will be come obvious.&lt;BR /&gt;
&lt;BR /&gt;
eg&lt;BR /&gt;
replace "(defun" with "Sub"&lt;BR /&gt;
replace "(If" with "If"&lt;BR /&gt;
&lt;BR /&gt;
Work on Single Subs and Functions one at time till they are working.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
&lt;BR /&gt;
Laurie Comerford&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;FILCAB&gt; wrote in message news:5925445@discussion.autodesk.com...&lt;BR /&gt;
Hi&lt;BR /&gt;
&lt;BR /&gt;
I forgot to mention why I'm using SendCommand().&lt;BR /&gt;
&lt;BR /&gt;
I'm porting a huge lisp codebase to VB and would like to have it working &lt;BR /&gt;
with a minimum fuss. After that, we would clean it up.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the help,&lt;BR /&gt;
&lt;BR /&gt;
  - Filipe Cabecinhas&lt;/FILCAB&gt;</description>
      <pubDate>Wed, 07 May 2008 21:54:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250074#M19865</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-05-07T21:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: Use SendCommand() as lisp's 'command</title>
      <link>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250075#M19866</link>
      <description>My advice would be to disregard the other really bad advice you're getting from Laurie, and consider making the jump to VB.NET.  &lt;BR /&gt;
&lt;BR /&gt;
With VB.NET, you can use the command line in the same way you do from LISP. Because of that, it also becomes much easier to port LISP applications to VB.NET.  &lt;BR /&gt;
&lt;BR /&gt;
You can find a counterpart to the LISP (command) function available here:&lt;BR /&gt;
&lt;BR /&gt;
  http://www.caddzone.com/CommandLine.vb&lt;BR /&gt;
&lt;BR /&gt;
In VB.NET with the above code, you can do this:&lt;BR /&gt;
&lt;BR /&gt;
    CommandLine.Command( "._LINE", new Point3d(2,3,0), 100.0 )&lt;BR /&gt;
&lt;BR /&gt;
And the result is exactly the same as this LISP:&lt;BR /&gt;
&lt;BR /&gt;
    (command "LINE" (list 2.0 3.0 0.0) 100.0)&lt;BR /&gt;
&lt;BR /&gt;
With regards to .NET and VB.NET, there are some initial hurdles that you have to get past in learning the language differences and the .NET framework, but once you've done that, you will never regret it, and will never look back.&lt;BR /&gt;
&lt;BR /&gt;
In fact, I'd be willing to wager that any 'pain' you experience learning VB.NET is nothing compared to the massive headaches you will have trying to port your command line-intensive LISP code to VBA.&lt;BR /&gt;
&lt;BR /&gt;
Because there is no future for VBA, making major investments in it is not a wise strategy. Autodesk is going .NET completely, and VBA/ActiveX will only be maintained for compatibility with legacy applications and for verticals like Civil3D, whose product designers seem to lack the wisdom needed to see the disadvantages of a programming model that is rooted in obsolete ActiveX technology.&lt;BR /&gt;
&lt;BR /&gt;
Oh BTW, on 64 bit platforms, VBA applications run 5-20X slower than they do on 32 bit platfoms.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Introducing AcadXTabs 2010:&lt;BR /&gt;
http://www.caddzone.com/acadxtabs/AcadXTabs2010.htm&lt;BR /&gt;
&lt;BR /&gt;
&lt;FILCAB&gt; wrote in message news:5925445@discussion.autodesk.com...&lt;BR /&gt;
Hi&lt;BR /&gt;
&lt;BR /&gt;
I forgot to mention why I'm using SendCommand().&lt;BR /&gt;
&lt;BR /&gt;
I'm porting a huge lisp codebase to VB and would like to have it working with a minimum fuss. After that, we would clean it up.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the help,&lt;BR /&gt;
&lt;BR /&gt;
  - Filipe Cabecinhas&lt;/FILCAB&gt;</description>
      <pubDate>Thu, 08 May 2008 00:25:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250075#M19866</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-05-08T00:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Use SendCommand() as lisp's 'command</title>
      <link>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250076#M19867</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
You may also care to read some of Tony's posts of the difficulty of using &lt;BR /&gt;
.NET with AutoCAD before making your decision..&lt;BR /&gt;
&lt;BR /&gt;
As always, deciding on the best route to take is more complex than simply &lt;BR /&gt;
reading advice from here.&lt;BR /&gt;
&lt;BR /&gt;
There is no doubt that .NET is seen by Autodesk as the way to go, but they &lt;BR /&gt;
have done almost nothing to make it easy for you to do so and if you don't &lt;BR /&gt;
have access to knowledge of .NET programming, then you may find the program &lt;BR /&gt;
up and running in VBA months before you have sufficient skills to do it in &lt;BR /&gt;
.NET.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
&lt;BR /&gt;
Laurie Comerford&lt;BR /&gt;
&lt;FILCAB&gt; wrote in message news:5925445@discussion.autodesk.com...&lt;BR /&gt;
Hi&lt;BR /&gt;
&lt;BR /&gt;
I forgot to mention why I'm using SendCommand().&lt;BR /&gt;
&lt;BR /&gt;
I'm porting a huge lisp codebase to VB and would like to have it working &lt;BR /&gt;
with a minimum fuss. After that, we would clean it up.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the help,&lt;BR /&gt;
&lt;BR /&gt;
  - Filipe Cabecinhas&lt;/FILCAB&gt;</description>
      <pubDate>Thu, 08 May 2008 03:42:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250076#M19867</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-05-08T03:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: Use SendCommand() as lisp's 'command</title>
      <link>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250077#M19868</link>
      <description>Hi Tony,&lt;BR /&gt;
&lt;BR /&gt;
Dyslexic as always.&lt;BR /&gt;
&lt;BR /&gt;
Could you read the question from the OP?  He asked for advice specfic to &lt;BR /&gt;
VBA.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
&lt;BR /&gt;
Laurie Comerford&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message &lt;BR /&gt;
news:5925526@discussion.autodesk.com...&lt;BR /&gt;
My advice would be to disregard the other really bad advice you're getting &lt;BR /&gt;
from Laurie, and consider making the jump to VB.NET.&lt;BR /&gt;
&lt;BR /&gt;
With VB.NET, you can use the command line in the same way you do from LISP. &lt;BR /&gt;
Because of that, it also becomes much easier to port LISP applications to &lt;BR /&gt;
VB.NET.&lt;BR /&gt;
&lt;BR /&gt;
You can find a counterpart to the LISP (command) function available here:&lt;BR /&gt;
&lt;BR /&gt;
  http://www.caddzone.com/CommandLine.vb&lt;BR /&gt;
&lt;BR /&gt;
In VB.NET with the above code, you can do this:&lt;BR /&gt;
&lt;BR /&gt;
    CommandLine.Command( "._LINE", new Point3d(2,3,0), 100.0 )&lt;BR /&gt;
&lt;BR /&gt;
And the result is exactly the same as this LISP:&lt;BR /&gt;
&lt;BR /&gt;
    (command "LINE" (list 2.0 3.0 0.0) 100.0)&lt;BR /&gt;
&lt;BR /&gt;
With regards to .NET and VB.NET, there are some initial hurdles that you &lt;BR /&gt;
have to get past in learning the language differences and the .NET &lt;BR /&gt;
framework, but once you've done that, you will never regret it, and will &lt;BR /&gt;
never look back.&lt;BR /&gt;
&lt;BR /&gt;
In fact, I'd be willing to wager that any 'pain' you experience learning &lt;BR /&gt;
VB.NET is nothing compared to the massive headaches you will have trying to &lt;BR /&gt;
port your command line-intensive LISP code to VBA.&lt;BR /&gt;
&lt;BR /&gt;
Because there is no future for VBA, making major investments in it is not a &lt;BR /&gt;
wise strategy. Autodesk is going .NET completely, and VBA/ActiveX will only &lt;BR /&gt;
be maintained for compatibility with legacy applications and for verticals &lt;BR /&gt;
like Civil3D, whose product designers seem to lack the wisdom needed to see &lt;BR /&gt;
the disadvantages of a programming model that is rooted in obsolete ActiveX &lt;BR /&gt;
technology.&lt;BR /&gt;
&lt;BR /&gt;
Oh BTW, on 64 bit platforms, VBA applications run 5-20X slower than they do &lt;BR /&gt;
on 32 bit platfoms.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Introducing AcadXTabs 2010:&lt;BR /&gt;
http://www.caddzone.com/acadxtabs/AcadXTabs2010.htm&lt;BR /&gt;
&lt;BR /&gt;
&lt;FILCAB&gt; wrote in message news:5925445@discussion.autodesk.com...&lt;BR /&gt;
Hi&lt;BR /&gt;
&lt;BR /&gt;
I forgot to mention why I'm using SendCommand().&lt;BR /&gt;
&lt;BR /&gt;
I'm porting a huge lisp codebase to VB and would like to have it working &lt;BR /&gt;
with a minimum fuss. After that, we would clean it up.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the help,&lt;BR /&gt;
&lt;BR /&gt;
  - Filipe Cabecinhas&lt;/FILCAB&gt;&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Thu, 08 May 2008 03:44:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250077#M19868</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-05-08T03:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: Use SendCommand() as lisp's 'command</title>
      <link>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250078#M19869</link>
      <description>"Laurie Comerford" wrote&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;&amp;gt; There is no doubt that .NET is seen by Autodesk as the way to go, but they have done almost nothing to make it easy for you to do so &amp;lt;&amp;lt;&lt;BR /&gt;
&lt;BR /&gt;
There is nothing Autodesk can do to compensate for any one person's basic lack of programming skills.&lt;BR /&gt;
&lt;BR /&gt;
What you are mislabeling as Autodesk's failure, is really little more than your own personal lack of skills, and nothing more. No one reading this should assume that everyone who posts here also has the same problem you have.&lt;BR /&gt;
&lt;BR /&gt;
.NET is a far more powerful programming model, and that power comes at a price (ease of use). Either you get off your duff and make the personal effort needed to learn to use the tools, or shut h*ll up.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Introducing AcadXTabs 2010:&lt;BR /&gt;
http://www.caddzone.com/acadxtabs/AcadXTabs2010.htm</description>
      <pubDate>Thu, 08 May 2008 04:15:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250078#M19869</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-05-08T04:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: Use SendCommand() as lisp's 'command</title>
      <link>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250079#M19870</link>
      <description>Laurie - I completely understand your malicious desire to discouarge others from going where you cannot go.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Introducing AcadXTabs 2010:&lt;BR /&gt;
http://www.caddzone.com/acadxtabs/AcadXTabs2010.htm&lt;BR /&gt;
&lt;BR /&gt;
"Laurie Comerford" &lt;LAURIE.COMERFORD&gt; wrote in message news:5925600@discussion.autodesk.com...&lt;BR /&gt;
Hi Tony,&lt;BR /&gt;
&lt;BR /&gt;
Dyslexic as always.&lt;BR /&gt;
&lt;BR /&gt;
Could you read the question from the OP?  He asked for advice specfic to &lt;BR /&gt;
VBA.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
&lt;BR /&gt;
Laurie Comerford&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message &lt;BR /&gt;
news:5925526@discussion.autodesk.com...&lt;BR /&gt;
My advice would be to disregard the other really bad advice you're getting &lt;BR /&gt;
from Laurie, and consider making the jump to VB.NET.&lt;BR /&gt;
&lt;BR /&gt;
With VB.NET, you can use the command line in the same way you do from LISP. &lt;BR /&gt;
Because of that, it also becomes much easier to port LISP applications to &lt;BR /&gt;
VB.NET.&lt;BR /&gt;
&lt;BR /&gt;
You can find a counterpart to the LISP (command) function available here:&lt;BR /&gt;
&lt;BR /&gt;
  http://www.caddzone.com/CommandLine.vb&lt;BR /&gt;
&lt;BR /&gt;
In VB.NET with the above code, you can do this:&lt;BR /&gt;
&lt;BR /&gt;
    CommandLine.Command( "._LINE", new Point3d(2,3,0), 100.0 )&lt;BR /&gt;
&lt;BR /&gt;
And the result is exactly the same as this LISP:&lt;BR /&gt;
&lt;BR /&gt;
    (command "LINE" (list 2.0 3.0 0.0) 100.0)&lt;BR /&gt;
&lt;BR /&gt;
With regards to .NET and VB.NET, there are some initial hurdles that you &lt;BR /&gt;
have to get past in learning the language differences and the .NET &lt;BR /&gt;
framework, but once you've done that, you will never regret it, and will &lt;BR /&gt;
never look back.&lt;BR /&gt;
&lt;BR /&gt;
In fact, I'd be willing to wager that any 'pain' you experience learning &lt;BR /&gt;
VB.NET is nothing compared to the massive headaches you will have trying to &lt;BR /&gt;
port your command line-intensive LISP code to VBA.&lt;BR /&gt;
&lt;BR /&gt;
Because there is no future for VBA, making major investments in it is not a &lt;BR /&gt;
wise strategy. Autodesk is going .NET completely, and VBA/ActiveX will only &lt;BR /&gt;
be maintained for compatibility with legacy applications and for verticals &lt;BR /&gt;
like Civil3D, whose product designers seem to lack the wisdom needed to see &lt;BR /&gt;
the disadvantages of a programming model that is rooted in obsolete ActiveX &lt;BR /&gt;
technology.&lt;BR /&gt;
&lt;BR /&gt;
Oh BTW, on 64 bit platforms, VBA applications run 5-20X slower than they do &lt;BR /&gt;
on 32 bit platfoms.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Introducing AcadXTabs 2010:&lt;BR /&gt;
http://www.caddzone.com/acadxtabs/AcadXTabs2010.htm&lt;BR /&gt;
&lt;BR /&gt;
&lt;FILCAB&gt; wrote in message news:5925445@discussion.autodesk.com...&lt;BR /&gt;
Hi&lt;BR /&gt;
&lt;BR /&gt;
I forgot to mention why I'm using SendCommand().&lt;BR /&gt;
&lt;BR /&gt;
I'm porting a huge lisp codebase to VB and would like to have it working &lt;BR /&gt;
with a minimum fuss. After that, we would clean it up.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the help,&lt;BR /&gt;
&lt;BR /&gt;
  - Filipe Cabecinhas&lt;/FILCAB&gt;&lt;/TONY.TANZILLO&gt;&lt;/LAURIE.COMERFORD&gt;</description>
      <pubDate>Thu, 08 May 2008 04:18:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250079#M19870</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-05-08T04:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: Use SendCommand() as lisp's 'command</title>
      <link>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250080#M19871</link>
      <description>&amp;gt;&amp;gt;You may also care to read some of Tony's posts of the difficulty of using &lt;BR /&gt;
.NET with AutoCAD before making your decision..&lt;BR /&gt;
&lt;BR /&gt;
If you use the API methods it is. In this case of just pushing commands to the commandline it would be easier than VBA.</description>
      <pubDate>Fri, 09 May 2008 00:38:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/use-sendcommand-as-lisp-s-command/m-p/2250080#M19871</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-05-09T00:38:19Z</dc:date>
    </item>
  </channel>
</rss>

