<?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: in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355715#M72010</link>
    <description>&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Joe,&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;What is MS 5.3 Extensibility?&amp;nbsp; I have never &lt;BR /&gt;
heard this before?&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Thanks&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&amp;nbsp;Tom&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;BR /&gt;
style="BORDER-LEFT: #000000 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT: 0px; PADDING-LEFT: 5px; PADDING-RIGHT: 0px"&amp;gt;&lt;BR /&gt;
  &lt;DIV&gt;"joesu" &amp;lt;&lt;A&gt;&lt;BR /&gt;
  href="mailto:joesu@worldnet.att.net"&amp;gt;joesu@worldnet.att.net&lt;/A&gt;&amp;gt; wrote in &lt;BR /&gt;
  message &lt;A&gt;&lt;BR /&gt;
  href="news:f0fe403.4@WebX.maYIadrTaRb"&amp;gt;news:f0fe403.4@WebX.maYIadrTaRb&lt;/A&gt;...&lt;/DIV&gt;Tom, &lt;BR /&gt;
&lt;BR /&gt;
  &lt;P&gt;Here is how you would do it in VB. Don't forget to add the reference to MS &lt;BR /&gt;
  5.3 Extensibility. &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;Joe &lt;BR /&gt;-- &lt;BR /&gt;Private Function GetVBAProjects() As Variant &lt;BR /&gt;Dim objVBE &lt;BR /&gt;
  As VBIDE.VBE &lt;BR /&gt;Dim objVBProject As VBIDE.VBProject &lt;BR /&gt;Dim Index As Integer &lt;BR /&gt;
  &lt;BR /&gt;Dim Projects() As String &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;Set objVBE = App.VBE &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;If objVBE.VBProjects.Count Then &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;'re-dimension &lt;BR /&gt;
  array to hold names of projects &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ReDim &lt;BR /&gt;
  Projects(objVBE.VBProjects.Count - 1) &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;Else &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Exit Function &lt;BR /&gt;
  &lt;BR /&gt;&amp;nbsp;&amp;nbsp;End If &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;For Each objVBProject In objVBE.VBProjects &lt;BR /&gt;
  &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Projects(Index) = objVBProject.Name &lt;BR /&gt;
  &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Index = Index + 1 &lt;BR /&gt;&amp;nbsp;&amp;nbsp;Next &lt;BR /&gt;
  objVBProject &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;GetVBAProjects = Projects &lt;BR /&gt;End Function&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
    <pubDate>Mon, 19 Aug 2002 07:32:52 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2002-08-19T07:32:52Z</dc:date>
    <item>
      <title>how unload a DVB project..?</title>
      <link>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355709#M72004</link>
      <description>I try to unload a DVB Project..</description>
      <pubDate>Fri, 02 Aug 2002 07:54:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355709#M72004</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-08-02T07:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: how unload a DVB project..?</title>
      <link>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355710#M72005</link>
      <description>give this a try. Type in "vbaunload" from the command line&lt;BR /&gt;
&lt;BR /&gt;
JRW</description>
      <pubDate>Fri, 16 Aug 2002 04:49:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355710#M72005</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-08-16T04:49:28Z</dc:date>
    </item>
    <item>
      <title>Re: how unload a DVB project..?</title>
      <link>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355711#M72006</link>
      <description>If you're wanting to Unload it programmatically then&lt;BR /&gt;
&lt;BR /&gt;
Application.UnloadDVB "ProjectName"&lt;BR /&gt;
&lt;BR /&gt;
should do it.&lt;BR /&gt;
&lt;BR /&gt;
Joe&lt;BR /&gt;
--</description>
      <pubDate>Fri, 16 Aug 2002 04:59:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355711#M72006</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-08-16T04:59:09Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355712#M72007</link>
      <description>&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Joe,&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Thanks for this tidbit, too.&amp;nbsp; &lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Can you tell me how to programatically tell what &lt;BR /&gt;
dvb macro is running.&amp;nbsp; I want to unload it when I am done but the "project &lt;BR /&gt;
name" wold be different whether I am in the test environment or &lt;BR /&gt;
production.&amp;nbsp; How could I differenciate the two?&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Thanks&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;BR /&gt;
style="BORDER-LEFT: #000000 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT: 0px; PADDING-LEFT: 5px; PADDING-RIGHT: 0px"&amp;gt;&lt;BR /&gt;
  &lt;DIV&gt;"joesu" &amp;lt;&lt;A&gt;&lt;BR /&gt;
  href="mailto:joesu@worldnet.att.net"&amp;gt;joesu@worldnet.att.net&lt;/A&gt;&amp;gt; wrote in &lt;BR /&gt;
  message &lt;A&gt;&lt;BR /&gt;
  href="news:f0fe403.1@WebX.maYIadrTaRb"&amp;gt;news:f0fe403.1@WebX.maYIadrTaRb&lt;/A&gt;...&lt;/DIV&gt;If &lt;BR /&gt;
  you're wanting to Unload it programmatically then &lt;BR /&gt;
  &lt;P&gt;Application.UnloadDVB "ProjectName" &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;should do it. &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;Joe &lt;BR /&gt;--&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Fri, 16 Aug 2002 06:50:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355712#M72007</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-08-16T06:50:54Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355713#M72008</link>
      <description>&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Or &lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Can you look&amp;nbsp; thru the VBA manager to find the &lt;BR /&gt;
collection of projects that are loaded?&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Thanks in advance&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Tom&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;BR /&gt;
style="BORDER-LEFT: #000000 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT: 0px; PADDING-LEFT: 5px; PADDING-RIGHT: 0px"&amp;gt;&lt;BR /&gt;
  &lt;DIV&gt;"joesu" &amp;lt;&lt;A&gt;&lt;BR /&gt;
  href="mailto:joesu@worldnet.att.net"&amp;gt;joesu@worldnet.att.net&lt;/A&gt;&amp;gt; wrote in &lt;BR /&gt;
  message &lt;A&gt;&lt;BR /&gt;
  href="news:f0fe403.1@WebX.maYIadrTaRb"&amp;gt;news:f0fe403.1@WebX.maYIadrTaRb&lt;/A&gt;...&lt;/DIV&gt;If &lt;BR /&gt;
  you're wanting to Unload it programmatically then &lt;BR /&gt;
  &lt;P&gt;Application.UnloadDVB "ProjectName" &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;should do it. &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;Joe &lt;BR /&gt;--&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Fri, 16 Aug 2002 06:58:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355713#M72008</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-08-16T06:58:58Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355714#M72009</link>
      <description>Tom,&lt;BR /&gt;
&lt;BR /&gt;
Here is how you would do it in VB. Don't forget to add the reference to MS 5.3 Extensibility.&lt;BR /&gt;
&lt;BR /&gt;
Joe&lt;BR /&gt;
--&lt;BR /&gt;
Private Function GetVBAProjects() As Variant&lt;BR /&gt;
Dim objVBE As VBIDE.VBE&lt;BR /&gt;
Dim objVBProject As VBIDE.VBProject&lt;BR /&gt;
Dim Index As Integer&lt;BR /&gt;
Dim Projects() As String&lt;BR /&gt;
&lt;BR /&gt;
  Set objVBE = App.VBE&lt;BR /&gt;
  &lt;BR /&gt;
  If objVBE.VBProjects.Count Then&lt;BR /&gt;
    're-dimension array to hold names of projects&lt;BR /&gt;
    ReDim Projects(objVBE.VBProjects.Count - 1)&lt;BR /&gt;
    &lt;BR /&gt;
    Else&lt;BR /&gt;
      Exit Function&lt;BR /&gt;
  End If&lt;BR /&gt;
  &lt;BR /&gt;
  For Each objVBProject In objVBE.VBProjects&lt;BR /&gt;
    Projects(Index) = objVBProject.Name&lt;BR /&gt;
    Index = Index + 1&lt;BR /&gt;
  Next objVBProject&lt;BR /&gt;
  &lt;BR /&gt;
  GetVBAProjects = Projects&lt;BR /&gt;
End Function</description>
      <pubDate>Fri, 16 Aug 2002 07:33:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355714#M72009</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-08-16T07:33:29Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355715#M72010</link>
      <description>&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Joe,&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;What is MS 5.3 Extensibility?&amp;nbsp; I have never &lt;BR /&gt;
heard this before?&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Thanks&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&amp;nbsp;Tom&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;BR /&gt;
style="BORDER-LEFT: #000000 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT: 0px; PADDING-LEFT: 5px; PADDING-RIGHT: 0px"&amp;gt;&lt;BR /&gt;
  &lt;DIV&gt;"joesu" &amp;lt;&lt;A&gt;&lt;BR /&gt;
  href="mailto:joesu@worldnet.att.net"&amp;gt;joesu@worldnet.att.net&lt;/A&gt;&amp;gt; wrote in &lt;BR /&gt;
  message &lt;A&gt;&lt;BR /&gt;
  href="news:f0fe403.4@WebX.maYIadrTaRb"&amp;gt;news:f0fe403.4@WebX.maYIadrTaRb&lt;/A&gt;...&lt;/DIV&gt;Tom, &lt;BR /&gt;
&lt;BR /&gt;
  &lt;P&gt;Here is how you would do it in VB. Don't forget to add the reference to MS &lt;BR /&gt;
  5.3 Extensibility. &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;Joe &lt;BR /&gt;-- &lt;BR /&gt;Private Function GetVBAProjects() As Variant &lt;BR /&gt;Dim objVBE &lt;BR /&gt;
  As VBIDE.VBE &lt;BR /&gt;Dim objVBProject As VBIDE.VBProject &lt;BR /&gt;Dim Index As Integer &lt;BR /&gt;
  &lt;BR /&gt;Dim Projects() As String &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;Set objVBE = App.VBE &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;If objVBE.VBProjects.Count Then &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;'re-dimension &lt;BR /&gt;
  array to hold names of projects &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ReDim &lt;BR /&gt;
  Projects(objVBE.VBProjects.Count - 1) &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;Else &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Exit Function &lt;BR /&gt;
  &lt;BR /&gt;&amp;nbsp;&amp;nbsp;End If &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;For Each objVBProject In objVBE.VBProjects &lt;BR /&gt;
  &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Projects(Index) = objVBProject.Name &lt;BR /&gt;
  &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Index = Index + 1 &lt;BR /&gt;&amp;nbsp;&amp;nbsp;Next &lt;BR /&gt;
  objVBProject &lt;BR /&gt;
  &lt;/P&gt;&lt;P&gt;GetVBAProjects = Projects &lt;BR /&gt;End Function&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Mon, 19 Aug 2002 07:32:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355715#M72010</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-08-19T07:32:52Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355716#M72011</link>
      <description>Tom,&lt;BR /&gt;
&lt;BR /&gt;
It is the object library that is required to access the VBAIDE. Don't use 6.0 as that one is for VB's IDE.&lt;BR /&gt;
&lt;BR /&gt;
Joe&lt;BR /&gt;
--</description>
      <pubDate>Mon, 19 Aug 2002 09:44:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/how-unload-a-dvb-project/m-p/355716#M72011</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-08-19T09:44:34Z</dc:date>
    </item>
  </channel>
</rss>

