<?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: Running a VB application in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/running-a-vb-application/m-p/1391729#M41841</link>
    <description>&amp;gt; Is it necesseary to "unload" the .dvb after running?&lt;BR /&gt;
&lt;BR /&gt;
It is not necessary and it is not easy to do. &lt;BR /&gt;
&lt;BR /&gt;
Here is some good info:&lt;BR /&gt;
http://discussion.autodesk.com/thread.jspa?messageID=4818349&lt;BR /&gt;
&lt;BR /&gt;
Also, try a search of "unload" in this newsgroup:&lt;BR /&gt;
http://discussion.autodesk.com/search.jspa?numResults=25&amp;amp;inputEntered=true&amp;amp;source=thread-threaded%7C33&amp;amp;q=unload&amp;amp;objID=f33&amp;amp;search.x=0&amp;amp;search.y=0&amp;amp;search=Search</description>
    <pubDate>Tue, 16 Aug 2005 18:56:20 GMT</pubDate>
    <dc:creator>GTVic</dc:creator>
    <dc:date>2005-08-16T18:56:20Z</dc:date>
    <item>
      <title>Running a VB application</title>
      <link>https://forums.autodesk.com/t5/vba-forum/running-a-vb-application/m-p/1391725#M41837</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
This is a very trivial question, but I have created a dialog box with a bit &lt;BR /&gt;
of code along with it using the VBA editor supplied with AutoCAD.  I have &lt;BR /&gt;
saved my project as bom.dvb.  Here is my question, what lines of code do I &lt;BR /&gt;
need to add to the project so that typing bom on the command line runs my &lt;BR /&gt;
new app?  The integrating the VB into AutoCAD is proving itself to be very &lt;BR /&gt;
frustrating...&lt;BR /&gt;
&lt;BR /&gt;
Thank you,</description>
      <pubDate>Thu, 28 Jul 2005 21:06:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/running-a-vb-application/m-p/1391725#M41837</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-07-28T21:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: Running a VB application</title>
      <link>https://forums.autodesk.com/t5/vba-forum/running-a-vb-application/m-p/1391726#M41838</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
This question is answered in this NG about once a month on average.  Just &lt;BR /&gt;
look back through the group for a full discussion.&lt;BR /&gt;
&lt;BR /&gt;
The method is with lisp along these lines:&lt;BR /&gt;
&lt;BR /&gt;
(Defun C:WhatIType ()&lt;BR /&gt;
 (vl-vbarun "C:\\Dir1\\Dir2\\MyProgramFileName.dvb!MyMacroName")&lt;BR /&gt;
)&lt;BR /&gt;
&lt;BR /&gt;
Add the above to your acad.lsp file - If necssary create an acad.lsp file to &lt;BR /&gt;
hold this text.&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
Laurie Comerford&lt;BR /&gt;
CADApps&lt;BR /&gt;
www.cadapps.com.au&lt;BR /&gt;
"bcbii" &lt;SMCKENZIE&gt; wrote in message &lt;BR /&gt;
news:4914245@discussion.autodesk.com...&lt;BR /&gt;
Hi,&lt;BR /&gt;
&lt;BR /&gt;
This is a very trivial question, but I have created a dialog box with a bit&lt;BR /&gt;
of code along with it using the VBA editor supplied with AutoCAD.  I have&lt;BR /&gt;
saved my project as bom.dvb.  Here is my question, what lines of code do I&lt;BR /&gt;
need to add to the project so that typing bom on the command line runs my&lt;BR /&gt;
new app?  The integrating the VB into AutoCAD is proving itself to be very&lt;BR /&gt;
frustrating...&lt;BR /&gt;
&lt;BR /&gt;
Thank you,&lt;/SMCKENZIE&gt;</description>
      <pubDate>Thu, 28 Jul 2005 22:33:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/running-a-vb-application/m-p/1391726#M41838</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-07-28T22:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Running a VB application</title>
      <link>https://forums.autodesk.com/t5/vba-forum/running-a-vb-application/m-p/1391727#M41839</link>
      <description>See the attached file.&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 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
"bcbii" &lt;SMCKENZIE&gt; wrote in message news:4914245@discussion.autodesk.com...&lt;BR /&gt;
Hi,&lt;BR /&gt;
&lt;BR /&gt;
This is a very trivial question, but I have created a dialog box with a bit &lt;BR /&gt;
of code along with it using the VBA editor supplied with AutoCAD.  I have &lt;BR /&gt;
saved my project as bom.dvb.  Here is my question, what lines of code do I &lt;BR /&gt;
need to add to the project so that typing bom on the command line runs my &lt;BR /&gt;
new app?  The integrating the VB into AutoCAD is proving itself to be very &lt;BR /&gt;
frustrating...&lt;BR /&gt;
&lt;BR /&gt;
Thank you,&lt;/SMCKENZIE&gt;</description>
      <pubDate>Fri, 29 Jul 2005 12:30:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/running-a-vb-application/m-p/1391727#M41839</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-07-29T12:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Running a VB application</title>
      <link>https://forums.autodesk.com/t5/vba-forum/running-a-vb-application/m-p/1391728#M41840</link>
      <description>Is it necesseary to "unload" the .dvb after running?</description>
      <pubDate>Tue, 16 Aug 2005 18:08:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/running-a-vb-application/m-p/1391728#M41840</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-08-16T18:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: Running a VB application</title>
      <link>https://forums.autodesk.com/t5/vba-forum/running-a-vb-application/m-p/1391729#M41841</link>
      <description>&amp;gt; Is it necesseary to "unload" the .dvb after running?&lt;BR /&gt;
&lt;BR /&gt;
It is not necessary and it is not easy to do. &lt;BR /&gt;
&lt;BR /&gt;
Here is some good info:&lt;BR /&gt;
http://discussion.autodesk.com/thread.jspa?messageID=4818349&lt;BR /&gt;
&lt;BR /&gt;
Also, try a search of "unload" in this newsgroup:&lt;BR /&gt;
http://discussion.autodesk.com/search.jspa?numResults=25&amp;amp;inputEntered=true&amp;amp;source=thread-threaded%7C33&amp;amp;q=unload&amp;amp;objID=f33&amp;amp;search.x=0&amp;amp;search.y=0&amp;amp;search=Search</description>
      <pubDate>Tue, 16 Aug 2005 18:56:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/running-a-vb-application/m-p/1391729#M41841</guid>
      <dc:creator>GTVic</dc:creator>
      <dc:date>2005-08-16T18:56:20Z</dc:date>
    </item>
  </channel>
</rss>

