<?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: ACAD DLL Accessibility Error in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505732#M70118</link>
    <description>Thanks again for the update and I will try and understand the AutoCAD COM API. &lt;BR /&gt;
&lt;BR /&gt;
But as for your comment about going to learn from one of the many Autodesk .NET labs out there. It is what I was trying to do and why I started this post I started a new Visual Studio's project and was walking through the famous "Hello World" tutorial of Autodesk. (I say famous because I have seen it referenced tons during my Internet search for AutoCAD and VB.NET.) Well, one of the steps is referencing the acdbmgd.dll/acmgd.dll files and that is where I got the above error. I am in a new project, following the steps exactly according to the attached lesson and I cannot complete page 6 because I cannot load the .DLL. &lt;BR /&gt;
&lt;BR /&gt;
Perhaps, I should have been more clearer. I was not looking for help with my program that I have to write; but with the Hello World tutorial, which is now attached. It is a bad habit of including too much information. &lt;BR /&gt;
&lt;BR /&gt;
Truly I am thankful for your help and I will be looking into AutoCAD's COM API.</description>
    <pubDate>Fri, 12 Jun 2009 22:05:45 GMT</pubDate>
    <dc:creator>hanchris</dc:creator>
    <dc:date>2009-06-12T22:05:45Z</dc:date>
    <item>
      <title>ACAD DLL Accessibility Error</title>
      <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505727#M70113</link>
      <description>I am trying to learn VB.NET, for a program I need to create, which will send information to AutoCAD. I am using AutoCAD: Electrical 2009 (but just need to access the AutoCAD API) and Visual Studio 2003. I would consider myself very new to Visual Studio; but not to VB since I use VBA, either AutoCAD, Microsoft Office, or other programs. &lt;BR /&gt;
&lt;BR /&gt;
Well, I thought I will sit down and do that famous Hello World program; but when trying to add the dll I get the following error: &lt;BR /&gt;
&lt;BR /&gt;
&lt;I&gt;"A Reference to 'C:\Program Files\Autodesk\Acade 2009\acdbmgd.dll' could not be added. This is not a valid assembly or COM component. Only assemblies with extension 'dll' or COM components can be referenced. Please make sure the file is accessible and that it is a valid assembly or COM component."&lt;/I&gt; &lt;BR /&gt;
&lt;BR /&gt;
If I did not know better I would say I did not have permissions to edit these and unless our IT department has locked down all DLL files for some reason I &lt;B&gt;do&lt;/B&gt; have write access to that directory. I am not sure what COM components is; but this file is obviously a dll, so should fall under the first classification. &lt;BR /&gt;
&lt;BR /&gt;
I guess my question is two parts 1)  what is accessibility, in relation to .NET since it is obviously not read/write access? 2) Has anyone come across a solution to this problem since VB.NET will be almost useless for me if I cannot get access to the AutoCAD libraries, both acmgd.dll and acdbmgd.dll? &lt;BR /&gt;
&lt;BR /&gt;
Thanks.</description>
      <pubDate>Fri, 12 Jun 2009 15:42:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505727#M70113</guid>
      <dc:creator>hanchris</dc:creator>
      <dc:date>2009-06-12T15:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: ACAD DLL Accessibility Error</title>
      <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505728#M70114</link>
      <description>Probably you need to clarify it a bit more.&lt;BR /&gt;
&lt;BR /&gt;
"for a program I need to create"? Does that mean you are writing and stand-alone exe program and you want to send information from this application to a running AutoCAD session, so that AutoCAD can do something according to the data sent from your application?&lt;BR /&gt;
&lt;BR /&gt;
If this is the case, you are automating AutoCAD via AutoCAD's COM API, just as you do using calssical VB (VB5/6). You DO NOT use acdbmgd.dll/acmgd.dll, which are AutoCAD ObjectARX .NET API and can only be used inside AutoCAD.&lt;BR /&gt;
&lt;BR /&gt;
I do not believe it is accessibility issue.</description>
      <pubDate>Fri, 12 Jun 2009 17:03:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505728#M70114</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2009-06-12T17:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: ACAD DLL Accessibility Error</title>
      <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505729#M70115</link>
      <description>Thanks for the response!&lt;BR /&gt;
&lt;BR /&gt;
The program I am trying to write is an existing stand-alone program, of ours, written in VB that we were using with another drafting software. It is suppose to take a list of drawing files open up the drawing, insert a block, and print that drawing and then close without saving. I need to modify this program to work with AutoCAD or develop a similar way. I have already created a program in LISP and VBA (combination) that does this from the command line of the open drawing only. &lt;BR /&gt;
&lt;BR /&gt;
Is this something I would use VB.NET or COM? I understand the concept behind.NET more then I do, then COM; but even .NET I do not know enough to explain to someone (meaning I do not know it very well). &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Although, with my original question, I was doing a little more research and it looks like Visual Studio 2003, uses Framework 1.1 and it looks like AutoCAD converted their libraries to Framework 2.0 back in the 2007 version, which is why I am getting that error. Here is the link that supports this point: http://discussion.autodesk.com/forums/thread.jspa?threadID=476093#5195266 Does this sound correct?</description>
      <pubDate>Fri, 12 Jun 2009 17:23:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505729#M70115</guid>
      <dc:creator>hanchris</dc:creator>
      <dc:date>2009-06-12T17:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: ACAD DLL Accessibility Error</title>
      <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505730#M70116</link>
      <description>It probably is a Framework version problem, what is the version that AutoCAD 2009 operates at? What about AutoCAD 2010 since we might be going to that soon? &lt;BR /&gt;
&lt;BR /&gt;
Basically, I am asking what is the lowest version of Visual Studio I need since I am reading Visual Studio 2010 is using Framework4.0 and I am still on 1.0&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Does anyone have a work around? How did you do this stuff before .NET? I can get the file names and I have a file that can do it; but I just need to open a file and run something on the command line. &lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance.</description>
      <pubDate>Fri, 12 Jun 2009 19:41:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505730#M70116</guid>
      <dc:creator>hanchris</dc:creator>
      <dc:date>2009-06-12T19:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: ACAD DLL Accessibility Error</title>
      <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505731#M70117</link>
      <description>It has nothing to do with .NET framework version, nor Visual Studio version. You cannot use ObjectARX .NET API (wrapped in acdbmgd.dll and acmgd.dll) outside AutoCAD, i.e. your stand-alone application. Period.&lt;BR /&gt;
&lt;BR /&gt;
You have to use AutoCAD's COM API to automate/communicate with AutoCAD. You can use classical VB (5/6), or ANY version of Visual Studio .NET (2002 to 2008, or even future VS2010, if you want to wait).&lt;BR /&gt;
&lt;BR /&gt;
If you really want to use ObjectARX .NET API by using acdbmgd.dll/acmgd.dll in your code, (which is the main topics of this NG), forget your external app, start learning by going through AutoCAD .NET programming labs, provided by Autodesk.</description>
      <pubDate>Fri, 12 Jun 2009 21:37:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505731#M70117</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2009-06-12T21:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: ACAD DLL Accessibility Error</title>
      <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505732#M70118</link>
      <description>Thanks again for the update and I will try and understand the AutoCAD COM API. &lt;BR /&gt;
&lt;BR /&gt;
But as for your comment about going to learn from one of the many Autodesk .NET labs out there. It is what I was trying to do and why I started this post I started a new Visual Studio's project and was walking through the famous "Hello World" tutorial of Autodesk. (I say famous because I have seen it referenced tons during my Internet search for AutoCAD and VB.NET.) Well, one of the steps is referencing the acdbmgd.dll/acmgd.dll files and that is where I got the above error. I am in a new project, following the steps exactly according to the attached lesson and I cannot complete page 6 because I cannot load the .DLL. &lt;BR /&gt;
&lt;BR /&gt;
Perhaps, I should have been more clearer. I was not looking for help with my program that I have to write; but with the Hello World tutorial, which is now attached. It is a bad habit of including too much information. &lt;BR /&gt;
&lt;BR /&gt;
Truly I am thankful for your help and I will be looking into AutoCAD's COM API.</description>
      <pubDate>Fri, 12 Jun 2009 22:05:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505732#M70118</guid>
      <dc:creator>hanchris</dc:creator>
      <dc:date>2009-06-12T22:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: ACAD DLL Accessibility Error</title>
      <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505733#M70119</link>
      <description>Rather than expecting everyone here to guess what you may have done &lt;BR /&gt;
incorrectly, why not just post the project so others can have a look?&lt;BR /&gt;
&lt;BR /&gt;
Excuse the sarcasm, but this really isn't like a TV game show where there's &lt;BR /&gt;
a prize for the first right guess.&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;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;HANCHRIS&gt; wrote in message news:6201097@discussion.autodesk.com...&lt;BR /&gt;
Thanks again for the update and I will try and understand the AutoCAD COM &lt;BR /&gt;
API. But as for your comment about going to learn from one of the many &lt;BR /&gt;
Autodesk .NET labs out there. It is what I was trying to do and why I &lt;BR /&gt;
started this post I started a new Visual Studio's project and was walking &lt;BR /&gt;
through the famous "Hello World" tutorial of Autodesk. (I say famous because &lt;BR /&gt;
I have seen it referenced tons during my Internet search for AutoCAD and &lt;BR /&gt;
VB.NET.) Well, one of the steps is referencing the acdbmgd.dll/acmgd.dll &lt;BR /&gt;
files and that is where I got the above error. I am in a new project, &lt;BR /&gt;
following the steps exactly according to the attached lesson and I cannot &lt;BR /&gt;
complete page 6 because I cannot load the .DLL. Perhaps, I should have been &lt;BR /&gt;
more clearer. I was not looking for help with my program that I have to &lt;BR /&gt;
write; but with the Hello World tutorial, which is now attached. It is a bad &lt;BR /&gt;
habit of including too much information. Truly I am thankful for your help &lt;BR /&gt;
and I will be looking into AutoCAD's COM API.&lt;/HANCHRIS&gt;</description>
      <pubDate>Sat, 13 Jun 2009 17:04:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505733#M70119</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-13T17:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: ACAD DLL Accessibility Error</title>
      <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505734#M70120</link>
      <description>What project am I suppose to post, when I have not typed in anything? I have just created a new project that is it. I created a new project and then when I go and try and reference the AutoCAD DLL I get an error message, which I was hoping someone here could try and interpret. &lt;BR /&gt;
&lt;BR /&gt;
However, if it makes you feel better attached is my empty project that I cannot do anything, with that involves the AutoCAD API because I cannot reference the DLL files. When I try, in Visual Studio 2003, by right clicking on the reference folder in the Solution Explorer and click "Browse" I then get the following message: &lt;BR /&gt;
&lt;BR /&gt;
&lt;I&gt;"A Reference to 'C:\Program Files\Autodesk\Acade 2009\acdbmgd.dll' could not be added. This is not a valid assembly or COM component. Only assemblies with extension 'dll' or COM components can be referenced. Please make sure the file is accessible and that it is a valid assembly or COM component"&lt;/I&gt;&lt;BR /&gt;
&lt;BR /&gt;
This message will then not let me leave the "Add Reference" window, until I remove the DLLs, in question. I have tried to add these files, under the .NET tab, COM tab, and Project Tab, not really knowing what the difference is; but trying to learn. I may not know much about .NET; but I know enough that I cannot access the AutoCAD API without referencing either acdbmgd.dll or the acmgd.dll, which I know do different things. I know the acmgd.dll allows access to the AutoCAD Editor, which is used to access the commands and dialogues. I know the acdbmgd allows access to the DWG database, which is where each line, circle, block, and other entity that can be in a DWG is stored. Although, I cannot reference either of them in .NET, so this "powerful" language of .NET in relation to AutoCAD is useless to me.&lt;BR /&gt;
&lt;BR /&gt;
So, I am asking you again, my existing program aside, is this referencing problem (above error message) in a &lt;B&gt;new&lt;/B&gt; project something you can help me with? I am using AutoCAD 2009 and Visual Studio 2003.</description>
      <pubDate>Mon, 15 Jun 2009 14:44:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505734#M70120</guid>
      <dc:creator>hanchris</dc:creator>
      <dc:date>2009-06-15T14:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: ACAD DLL Accessibility Error</title>
      <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505735#M70121</link>
      <description>To be perfectly honest, I have never tried using Visual Studio 2003 with &lt;BR /&gt;
AutoCAD 2009's .NET API.&lt;BR /&gt;
&lt;BR /&gt;
The one simple question I have for you, is why on Earth are you using a &lt;BR /&gt;
7-year old version of Visual Studio????????&lt;BR /&gt;
&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;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;HANCHRIS&gt; wrote in message news:6201677@discussion.autodesk.com...&lt;BR /&gt;
What project am I suppose to post, when I have not typed in anything? I have &lt;BR /&gt;
just created a new project that is it. I created a new project and then when &lt;BR /&gt;
I go and try and reference the AutoCAD DLL I get an error message, which I &lt;BR /&gt;
was hoping someone here could try and interpret. However, if it makes you &lt;BR /&gt;
feel better attached is my empty project that I cannot do anything, with &lt;BR /&gt;
that involves the AutoCAD API because I cannot reference the DLL files. When &lt;BR /&gt;
I try, in Visual Studio 2003, by right clicking on the reference folder in &lt;BR /&gt;
the Solution Explorer and click "Browse" I then get the following message: &lt;BR /&gt;
&lt;I&gt;"A Reference to 'C:\Program Files\Autodesk\Acade 2009\acdbmgd.dll' could &lt;BR /&gt;
not be added. This is not a valid assembly or COM component. Only assemblies &lt;BR /&gt;
with extension 'dll' or COM components can be referenced. Please make sure &lt;BR /&gt;
the file is accessible and that it is a valid assembly or COM component"&lt;/I&gt; &lt;BR /&gt;
This message will then not let me leave the "Add Reference" window, until I &lt;BR /&gt;
remove the DLLs, in question. I have tried to add these files, under the &lt;BR /&gt;
.NET tab, COM tab, and Project Tab, not really knowing what the difference &lt;BR /&gt;
is; but trying to learn. I may not know much about .NET; but I know enough &lt;BR /&gt;
that I cannot access the AutoCAD API without referencing either acdbmgd.dll &lt;BR /&gt;
or the acmgd.dll, which I know do different things. I know the acmgd.dll &lt;BR /&gt;
allows access to the AutoCAD Editor, which is used to access the commands &lt;BR /&gt;
and dialogues. I know the acdbmgd allows access to the DWG database, which &lt;BR /&gt;
is where each line, circle, block, and other entity that can be in a DWG is &lt;BR /&gt;
stored. Although, I cannot reference either of them in .NET, so this &lt;BR /&gt;
"powerful" language of .NET in relation to AutoCAD is useless to me. So, I &lt;BR /&gt;
am asking you again, my existing program aside, is this referencing problem &lt;BR /&gt;
(above error message) in a &lt;B&gt;new&lt;/B&gt; project something you can help me &lt;BR /&gt;
with? I am using AutoCAD 2009 and Visual Studio 2003.&lt;/HANCHRIS&gt;</description>
      <pubDate>Mon, 15 Jun 2009 16:12:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505735#M70121</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-15T16:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: ACAD DLL Accessibility Error</title>
      <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505736#M70122</link>
      <description>I work with the tools I am given, not with the tools that I would like.</description>
      <pubDate>Mon, 15 Jun 2009 16:45:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505736#M70122</guid>
      <dc:creator>hanchris</dc:creator>
      <dc:date>2009-06-15T16:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: ACAD DLL Accessibility Error</title>
      <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505737#M70123</link>
      <description>This is taken directly from the ObjectARX 2009 SDK documentation:&lt;BR /&gt;
&lt;BR /&gt;
Developing applications with ObjectARX requires the following software and hardware:&lt;BR /&gt;
&lt;BR /&gt;
Microsoft® Windows® 2000, Service Pack 4; Microsoft Windows XP Professional, Service Pack 2; Windows Vista Enterprise; Windows Vista Business; and Windows Vista Ultimate&lt;BR /&gt;
Microsoft Visual Studio 2005®, Service Pack 1&lt;BR /&gt;
Pentium® IV or later&lt;BR /&gt;
512 MB RAM&lt;BR /&gt;
1024 x 768 VGA with True Color (minimum)&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
You can use the free Express Edition of VS 2005, however i believe it requires a bit of a work around for debugging, which should be detailed somewhere on this forum.&lt;BR /&gt;
&lt;BR /&gt;
Good Luck,&lt;BR /&gt;
-Mark P.</description>
      <pubDate>Mon, 15 Jun 2009 17:34:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505737#M70123</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-15T17:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: ACAD DLL Accessibility Error</title>
      <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505738#M70124</link>
      <description>Then you need to tell whomever gave you the tool that&lt;BR /&gt;
they gave you the wrong tool.&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;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;HANCHRIS&gt; wrote in message news:6201777@discussion.autodesk.com...&lt;BR /&gt;
I work with the tools I am given, not with the tools that I would like.&lt;/HANCHRIS&gt;</description>
      <pubDate>Mon, 15 Jun 2009 18:15:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505738#M70124</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-15T18:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: ACAD DLL Accessibility Error</title>
      <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505739#M70125</link>
      <description>Can confirm there is nothing wrong with how the project was created as I can open the project in 2008 and after it is converted can add the references. As Mark pointed out you can use the free express editions http://www.microsoft.com/express/product/.</description>
      <pubDate>Mon, 15 Jun 2009 22:40:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505739#M70125</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-15T22:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: ACAD DLL Accessibility Error</title>
      <link>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505740#M70126</link>
      <description>Thank you all. I feel so much better, just knowing what the problem is. I can now feel comfortable with a work around, even if it will result in a more cumbersome program. &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
I really appreciated all the help.</description>
      <pubDate>Mon, 15 Jun 2009 23:09:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/acad-dll-accessibility-error/m-p/2505740#M70126</guid>
      <dc:creator>hanchris</dc:creator>
      <dc:date>2009-06-15T23:09:21Z</dc:date>
    </item>
  </channel>
</rss>

