<?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: Visual Basic 2008 Express and AutoCAD 2009 in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318568#M73836</link>
    <description>Thank you very much, now it is working</description>
    <pubDate>Tue, 12 Aug 2008 11:37:40 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-08-12T11:37:40Z</dc:date>
    <item>
      <title>Visual Basic 2008 Express and AutoCAD 2009</title>
      <link>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318559#M73827</link>
      <description>It is possible to use VB 2008 Express With AutoCAD 2009.&lt;BR /&gt;
&lt;BR /&gt;
I tried the object arx2009 Hello VB sample, I compile it, and i used Netload, but when i type HELLO at the AutoCAD 2009 command line, it says that it is not a command, I need Help&lt;BR /&gt;
&lt;BR /&gt;
Thank You</description>
      <pubDate>Sat, 09 Aug 2008 14:48:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318559#M73827</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-09T14:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Basic 2008 Express and AutoCAD 2009</title>
      <link>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318560#M73828</link>
      <description>First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
&lt;BR /&gt;
Next, start a "Class Library" project type.&lt;BR /&gt;
&lt;BR /&gt;
Then, paste this code in the editor:&lt;BR /&gt;
&lt;BR /&gt;
Imports Autodesk.AutoCAD.Runtime&lt;BR /&gt;
&lt;BR /&gt;
Public Class Examples&lt;BR /&gt;
&lt;BR /&gt;
&lt;COMMANDMETHOD&gt; _&lt;BR /&gt;
&lt;BR /&gt;
Public Sub Hello()&lt;BR /&gt;
&lt;BR /&gt;
MsgBox("This is a test")&lt;BR /&gt;
&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
End Class&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Build the solution and then netload it into AutoCAD. Type "Hello" at the &lt;BR /&gt;
command prompt and you should see a dialog box with the message above.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;TOSERS&gt; wrote in message news:6002693@discussion.autodesk.com...&lt;BR /&gt;
It is possible to use VB 2008 Express With AutoCAD 2009.&lt;BR /&gt;
&lt;BR /&gt;
I tried the object arx2009 Hello VB sample, I compile it, and i used &lt;BR /&gt;
Netload, but when i type HELLO at the AutoCAD 2009 command line, it says &lt;BR /&gt;
that it is not a command, I need Help&lt;BR /&gt;
&lt;BR /&gt;
Thank You&lt;/TOSERS&gt;&lt;/COMMANDMETHOD&gt;</description>
      <pubDate>Mon, 11 Aug 2008 14:21:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318560#M73828</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-11T14:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Basic 2008 Express and AutoCAD 2009</title>
      <link>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318561#M73829</link>
      <description>&amp;gt;&amp;gt;First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
Also set 'copy local' to false for both... Seem to be the original problem.&lt;BR /&gt;
&lt;BR /&gt;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message news:6003371@discussion.autodesk.com...&lt;BR /&gt;
First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
&lt;BR /&gt;
Next, start a "Class Library" project type.&lt;BR /&gt;
&lt;BR /&gt;
Then, paste this code in the editor:&lt;BR /&gt;
&lt;BR /&gt;
Imports Autodesk.AutoCAD.Runtime&lt;BR /&gt;
&lt;BR /&gt;
Public Class Examples&lt;BR /&gt;
&lt;BR /&gt;
&lt;COMMANDMETHOD&gt; _&lt;BR /&gt;
&lt;BR /&gt;
Public Sub Hello()&lt;BR /&gt;
&lt;BR /&gt;
MsgBox("This is a test")&lt;BR /&gt;
&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
End Class&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Build the solution and then netload it into AutoCAD. Type "Hello" at the&lt;BR /&gt;
command prompt and you should see a dialog box with the message above.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;TOSERS&gt; wrote in message news:6002693@discussion.autodesk.com...&lt;BR /&gt;
It is possible to use VB 2008 Express With AutoCAD 2009.&lt;BR /&gt;
&lt;BR /&gt;
I tried the object arx2009 Hello VB sample, I compile it, and i used&lt;BR /&gt;
Netload, but when i type HELLO at the AutoCAD 2009 command line, it says&lt;BR /&gt;
that it is not a command, I need Help&lt;BR /&gt;
&lt;BR /&gt;
Thank You&lt;/TOSERS&gt;&lt;/COMMANDMETHOD&gt;&lt;/JOESUTPHIN&gt;</description>
      <pubDate>Mon, 11 Aug 2008 14:36:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318561#M73829</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-11T14:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Basic 2008 Express and AutoCAD 2009</title>
      <link>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318562#M73830</link>
      <description>Oops, you should do that, although I never do.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Paul Richardson" &lt;BLAH&gt; wrote in message &lt;BR /&gt;
news:6003369@discussion.autodesk.com...&lt;BR /&gt;
&amp;gt;&amp;gt;First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
Also set 'copy local' to false for both... Seem to be the original problem.&lt;BR /&gt;
&lt;BR /&gt;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message &lt;BR /&gt;
news:6003371@discussion.autodesk.com...&lt;BR /&gt;
First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
&lt;BR /&gt;
Next, start a "Class Library" project type.&lt;BR /&gt;
&lt;BR /&gt;
Then, paste this code in the editor:&lt;BR /&gt;
&lt;BR /&gt;
Imports Autodesk.AutoCAD.Runtime&lt;BR /&gt;
&lt;BR /&gt;
Public Class Examples&lt;BR /&gt;
&lt;BR /&gt;
&lt;COMMANDMETHOD&gt; _&lt;BR /&gt;
&lt;BR /&gt;
Public Sub Hello()&lt;BR /&gt;
&lt;BR /&gt;
MsgBox("This is a test")&lt;BR /&gt;
&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
End Class&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Build the solution and then netload it into AutoCAD. Type "Hello" at the&lt;BR /&gt;
command prompt and you should see a dialog box with the message above.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;TOSERS&gt; wrote in message news:6002693@discussion.autodesk.com...&lt;BR /&gt;
It is possible to use VB 2008 Express With AutoCAD 2009.&lt;BR /&gt;
&lt;BR /&gt;
I tried the object arx2009 Hello VB sample, I compile it, and i used&lt;BR /&gt;
Netload, but when i type HELLO at the AutoCAD 2009 command line, it says&lt;BR /&gt;
that it is not a command, I need Help&lt;BR /&gt;
&lt;BR /&gt;
Thank You&lt;/TOSERS&gt;&lt;/COMMANDMETHOD&gt;&lt;/JOESUTPHIN&gt;&lt;/BLAH&gt;</description>
      <pubDate>Mon, 11 Aug 2008 14:53:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318562#M73830</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-11T14:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Basic 2008 Express and AutoCAD 2009</title>
      <link>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318563#M73831</link>
      <description>You have to or the commands won't be recognized. If you create a project using the wizard it does it for you though.&lt;BR /&gt;
&lt;BR /&gt;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message news:6003393@discussion.autodesk.com...&lt;BR /&gt;
Oops, you should do that, although I never do.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Paul Richardson" &lt;BLAH&gt; wrote in message&lt;BR /&gt;
news:6003369@discussion.autodesk.com...&lt;BR /&gt;
&amp;gt;&amp;gt;First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
Also set 'copy local' to false for both... Seem to be the original problem.&lt;BR /&gt;
&lt;BR /&gt;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message&lt;BR /&gt;
news:6003371@discussion.autodesk.com...&lt;BR /&gt;
First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
&lt;BR /&gt;
Next, start a "Class Library" project type.&lt;BR /&gt;
&lt;BR /&gt;
Then, paste this code in the editor:&lt;BR /&gt;
&lt;BR /&gt;
Imports Autodesk.AutoCAD.Runtime&lt;BR /&gt;
&lt;BR /&gt;
Public Class Examples&lt;BR /&gt;
&lt;BR /&gt;
&lt;COMMANDMETHOD&gt; _&lt;BR /&gt;
&lt;BR /&gt;
Public Sub Hello()&lt;BR /&gt;
&lt;BR /&gt;
MsgBox("This is a test")&lt;BR /&gt;
&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
End Class&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Build the solution and then netload it into AutoCAD. Type "Hello" at the&lt;BR /&gt;
command prompt and you should see a dialog box with the message above.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;TOSERS&gt; wrote in message news:6002693@discussion.autodesk.com...&lt;BR /&gt;
It is possible to use VB 2008 Express With AutoCAD 2009.&lt;BR /&gt;
&lt;BR /&gt;
I tried the object arx2009 Hello VB sample, I compile it, and i used&lt;BR /&gt;
Netload, but when i type HELLO at the AutoCAD 2009 command line, it says&lt;BR /&gt;
that it is not a command, I need Help&lt;BR /&gt;
&lt;BR /&gt;
Thank You&lt;/TOSERS&gt;&lt;/COMMANDMETHOD&gt;&lt;/JOESUTPHIN&gt;&lt;/BLAH&gt;&lt;/JOESUTPHIN&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:04:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318563#M73831</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-11T15:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Basic 2008 Express and AutoCAD 2009</title>
      <link>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318564#M73832</link>
      <description>Evidently not since I don't and I don't have any problems.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
"Paul Richardson" &lt;BLAH&gt; wrote in message &lt;BR /&gt;
news:6003397@discussion.autodesk.com...&lt;BR /&gt;
You have to or the commands won't be recognized. If you create a project &lt;BR /&gt;
using the wizard it does it for you though.&lt;BR /&gt;
&lt;BR /&gt;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message &lt;BR /&gt;
news:6003393@discussion.autodesk.com...&lt;BR /&gt;
Oops, you should do that, although I never do.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Paul Richardson" &lt;BLAH&gt; wrote in message&lt;BR /&gt;
news:6003369@discussion.autodesk.com...&lt;BR /&gt;
&amp;gt;&amp;gt;First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
Also set 'copy local' to false for both... Seem to be the original problem.&lt;BR /&gt;
&lt;BR /&gt;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message&lt;BR /&gt;
news:6003371@discussion.autodesk.com...&lt;BR /&gt;
First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
&lt;BR /&gt;
Next, start a "Class Library" project type.&lt;BR /&gt;
&lt;BR /&gt;
Then, paste this code in the editor:&lt;BR /&gt;
&lt;BR /&gt;
Imports Autodesk.AutoCAD.Runtime&lt;BR /&gt;
&lt;BR /&gt;
Public Class Examples&lt;BR /&gt;
&lt;BR /&gt;
&lt;COMMANDMETHOD&gt; _&lt;BR /&gt;
&lt;BR /&gt;
Public Sub Hello()&lt;BR /&gt;
&lt;BR /&gt;
MsgBox("This is a test")&lt;BR /&gt;
&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
End Class&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Build the solution and then netload it into AutoCAD. Type "Hello" at the&lt;BR /&gt;
command prompt and you should see a dialog box with the message above.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;TOSERS&gt; wrote in message news:6002693@discussion.autodesk.com...&lt;BR /&gt;
It is possible to use VB 2008 Express With AutoCAD 2009.&lt;BR /&gt;
&lt;BR /&gt;
I tried the object arx2009 Hello VB sample, I compile it, and i used&lt;BR /&gt;
Netload, but when i type HELLO at the AutoCAD 2009 command line, it says&lt;BR /&gt;
that it is not a command, I need Help&lt;BR /&gt;
&lt;BR /&gt;
Thank You&lt;/TOSERS&gt;&lt;/COMMANDMETHOD&gt;&lt;/JOESUTPHIN&gt;&lt;/BLAH&gt;&lt;/JOESUTPHIN&gt;&lt;/BLAH&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:22:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318564#M73832</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-11T15:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Basic 2008 Express and AutoCAD 2009</title>
      <link>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318565#M73833</link>
      <description>Perhaps you don't have any problems because you've never&lt;BR /&gt;
debugged a managed application.&lt;BR /&gt;
&lt;BR /&gt;
That's when the commands are not recognized.&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;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message news:6003446@discussion.autodesk.com...&lt;BR /&gt;
Evidently not since I don't and I don't have any problems.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
"Paul Richardson" &lt;BLAH&gt; wrote in message &lt;BR /&gt;
news:6003397@discussion.autodesk.com...&lt;BR /&gt;
You have to or the commands won't be recognized. If you create a project &lt;BR /&gt;
using the wizard it does it for you though.&lt;BR /&gt;
&lt;BR /&gt;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message &lt;BR /&gt;
news:6003393@discussion.autodesk.com...&lt;BR /&gt;
Oops, you should do that, although I never do.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Paul Richardson" &lt;BLAH&gt; wrote in message&lt;BR /&gt;
news:6003369@discussion.autodesk.com...&lt;BR /&gt;
&amp;gt;&amp;gt;First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
Also set 'copy local' to false for both... Seem to be the original problem.&lt;BR /&gt;
&lt;BR /&gt;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message&lt;BR /&gt;
news:6003371@discussion.autodesk.com...&lt;BR /&gt;
First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
&lt;BR /&gt;
Next, start a "Class Library" project type.&lt;BR /&gt;
&lt;BR /&gt;
Then, paste this code in the editor:&lt;BR /&gt;
&lt;BR /&gt;
Imports Autodesk.AutoCAD.Runtime&lt;BR /&gt;
&lt;BR /&gt;
Public Class Examples&lt;BR /&gt;
&lt;BR /&gt;
&lt;COMMANDMETHOD&gt; _&lt;BR /&gt;
&lt;BR /&gt;
Public Sub Hello()&lt;BR /&gt;
&lt;BR /&gt;
MsgBox("This is a test")&lt;BR /&gt;
&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
End Class&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Build the solution and then netload it into AutoCAD. Type "Hello" at the&lt;BR /&gt;
command prompt and you should see a dialog box with the message above.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;TOSERS&gt; wrote in message news:6002693@discussion.autodesk.com...&lt;BR /&gt;
It is possible to use VB 2008 Express With AutoCAD 2009.&lt;BR /&gt;
&lt;BR /&gt;
I tried the object arx2009 Hello VB sample, I compile it, and i used&lt;BR /&gt;
Netload, but when i type HELLO at the AutoCAD 2009 command line, it says&lt;BR /&gt;
that it is not a command, I need Help&lt;BR /&gt;
&lt;BR /&gt;
Thank You&lt;/TOSERS&gt;&lt;/COMMANDMETHOD&gt;&lt;/JOESUTPHIN&gt;&lt;/BLAH&gt;&lt;/JOESUTPHIN&gt;&lt;/BLAH&gt;&lt;/JOESUTPHIN&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:30:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318565#M73833</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-11T15:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Basic 2008 Express and AutoCAD 2009</title>
      <link>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318566#M73834</link>
      <description>So you can set 'copy local' to true and still have the commands run... I cannot. Anyone else able to create&lt;BR /&gt;
commands without setting 'copy local' to false?&lt;BR /&gt;
&lt;BR /&gt;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message news:6003446@discussion.autodesk.com...&lt;BR /&gt;
Evidently not since I don't and I don't have any problems.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
"Paul Richardson" &lt;BLAH&gt; wrote in message&lt;BR /&gt;
news:6003397@discussion.autodesk.com...&lt;BR /&gt;
You have to or the commands won't be recognized. If you create a project&lt;BR /&gt;
using the wizard it does it for you though.&lt;BR /&gt;
&lt;BR /&gt;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message&lt;BR /&gt;
news:6003393@discussion.autodesk.com...&lt;BR /&gt;
Oops, you should do that, although I never do.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Paul Richardson" &lt;BLAH&gt; wrote in message&lt;BR /&gt;
news:6003369@discussion.autodesk.com...&lt;BR /&gt;
&amp;gt;&amp;gt;First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
Also set 'copy local' to false for both... Seem to be the original problem.&lt;BR /&gt;
&lt;BR /&gt;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message&lt;BR /&gt;
news:6003371@discussion.autodesk.com...&lt;BR /&gt;
First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
&lt;BR /&gt;
Next, start a "Class Library" project type.&lt;BR /&gt;
&lt;BR /&gt;
Then, paste this code in the editor:&lt;BR /&gt;
&lt;BR /&gt;
Imports Autodesk.AutoCAD.Runtime&lt;BR /&gt;
&lt;BR /&gt;
Public Class Examples&lt;BR /&gt;
&lt;BR /&gt;
&lt;COMMANDMETHOD&gt; _&lt;BR /&gt;
&lt;BR /&gt;
Public Sub Hello()&lt;BR /&gt;
&lt;BR /&gt;
MsgBox("This is a test")&lt;BR /&gt;
&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
End Class&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Build the solution and then netload it into AutoCAD. Type "Hello" at the&lt;BR /&gt;
command prompt and you should see a dialog box with the message above.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;TOSERS&gt; wrote in message news:6002693@discussion.autodesk.com...&lt;BR /&gt;
It is possible to use VB 2008 Express With AutoCAD 2009.&lt;BR /&gt;
&lt;BR /&gt;
I tried the object arx2009 Hello VB sample, I compile it, and i used&lt;BR /&gt;
Netload, but when i type HELLO at the AutoCAD 2009 command line, it says&lt;BR /&gt;
that it is not a command, I need Help&lt;BR /&gt;
&lt;BR /&gt;
Thank You&lt;/TOSERS&gt;&lt;/COMMANDMETHOD&gt;&lt;/JOESUTPHIN&gt;&lt;/BLAH&gt;&lt;/JOESUTPHIN&gt;&lt;/BLAH&gt;&lt;/JOESUTPHIN&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:40:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318566#M73834</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-11T15:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Basic 2008 Express and AutoCAD 2009</title>
      <link>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318567#M73835</link>
      <description>I should have mentioned this is only during debugging - Danka!&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message news:6003448@discussion.autodesk.com...&lt;BR /&gt;
Perhaps you don't have any problems because you've never&lt;BR /&gt;
debugged a managed application.&lt;BR /&gt;
&lt;BR /&gt;
That's when the commands are not recognized.&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;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message news:6003446@discussion.autodesk.com...&lt;BR /&gt;
Evidently not since I don't and I don't have any problems.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
"Paul Richardson" &lt;BLAH&gt; wrote in message&lt;BR /&gt;
news:6003397@discussion.autodesk.com...&lt;BR /&gt;
You have to or the commands won't be recognized. If you create a project&lt;BR /&gt;
using the wizard it does it for you though.&lt;BR /&gt;
&lt;BR /&gt;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message&lt;BR /&gt;
news:6003393@discussion.autodesk.com...&lt;BR /&gt;
Oops, you should do that, although I never do.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Paul Richardson" &lt;BLAH&gt; wrote in message&lt;BR /&gt;
news:6003369@discussion.autodesk.com...&lt;BR /&gt;
&amp;gt;&amp;gt;First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
Also set 'copy local' to false for both... Seem to be the original problem.&lt;BR /&gt;
&lt;BR /&gt;
"Joe Sutphin" &lt;JOESUTPHIN&gt; wrote in message&lt;BR /&gt;
news:6003371@discussion.autodesk.com...&lt;BR /&gt;
First, make sure you have a reference set to acMgd.dll and acDbMgd.dll.&lt;BR /&gt;
&lt;BR /&gt;
Next, start a "Class Library" project type.&lt;BR /&gt;
&lt;BR /&gt;
Then, paste this code in the editor:&lt;BR /&gt;
&lt;BR /&gt;
Imports Autodesk.AutoCAD.Runtime&lt;BR /&gt;
&lt;BR /&gt;
Public Class Examples&lt;BR /&gt;
&lt;BR /&gt;
&lt;COMMANDMETHOD&gt; _&lt;BR /&gt;
&lt;BR /&gt;
Public Sub Hello()&lt;BR /&gt;
&lt;BR /&gt;
MsgBox("This is a test")&lt;BR /&gt;
&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
End Class&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Build the solution and then netload it into AutoCAD. Type "Hello" at the&lt;BR /&gt;
command prompt and you should see a dialog box with the message above.&lt;BR /&gt;
&lt;BR /&gt;
Joe ...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;TOSERS&gt; wrote in message news:6002693@discussion.autodesk.com...&lt;BR /&gt;
It is possible to use VB 2008 Express With AutoCAD 2009.&lt;BR /&gt;
&lt;BR /&gt;
I tried the object arx2009 Hello VB sample, I compile it, and i used&lt;BR /&gt;
Netload, but when i type HELLO at the AutoCAD 2009 command line, it says&lt;BR /&gt;
that it is not a command, I need Help&lt;BR /&gt;
&lt;BR /&gt;
Thank You&lt;/TOSERS&gt;&lt;/COMMANDMETHOD&gt;&lt;/JOESUTPHIN&gt;&lt;/BLAH&gt;&lt;/JOESUTPHIN&gt;&lt;/BLAH&gt;&lt;/JOESUTPHIN&gt;&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:47:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318567#M73835</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-11T15:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Basic 2008 Express and AutoCAD 2009</title>
      <link>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318568#M73836</link>
      <description>Thank you very much, now it is working</description>
      <pubDate>Tue, 12 Aug 2008 11:37:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318568#M73836</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-12T11:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Basic 2008 Express and AutoCAD 2009</title>
      <link>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318569#M73837</link>
      <description>I just upgraded to Visual Studio 2008.  I have found that it wont recognize any of the commands that i compiled with it.  I Can debug it great, but i go to install on another machine it doesnt work one bit.  Any help would be appreciated.  &lt;BR /&gt;
&lt;BR /&gt;
Using Version AutoCAD 2007,2008,2009.  The version doesnt matter.  It must be sometihng during the compile.  I have tried copying local and not.  Its getting frustrating!!</description>
      <pubDate>Sat, 23 Aug 2008 05:23:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/visual-basic-2008-express-and-autocad-2009/m-p/2318569#M73837</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-23T05:23:14Z</dc:date>
    </item>
  </channel>
</rss>

