<?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: Problems with VB .NET in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/5568558#M40657</link>
    <description>&lt;P&gt;I clear the second problem with the&amp;nbsp;&lt;SPAN&gt;Autodesk.AutoCAD.Runtime.&amp;nbsp;Refenced AcCoreMGD.dll and added "Imports Autodesk.AutoCAD.Runtime". I am still getting an error "error BC30456: 'AcadDocument' is not a member of 'Autodesk.AutoCAD.ApplicationServices.Document'." I have tried adding "Imports Autodesk.AutoCAD.ApplicationServices.DocumentExtension"&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 02 Apr 2015 13:25:29 GMT</pubDate>
    <dc:creator>Jedimaster</dc:creator>
    <dc:date>2015-04-02T13:25:29Z</dc:date>
    <item>
      <title>Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/5567311#M40656</link>
      <description>&lt;P&gt;I am trying to learn VB .NET and running into a few snags.&lt;/P&gt;&lt;P&gt;I am running&lt;BR /&gt;Windows 7 Professional Service Pack 1 64 Bit&lt;BR /&gt;Microsoft Visual Studio Pofessional 2012 Upadte 4&lt;BR /&gt;OjectARX 2015&lt;BR /&gt;OjectARX 2015 .NET Wizards&lt;BR /&gt;AutoCAD MAP 2015&lt;/P&gt;&lt;P&gt;I have refernced in AcDbMgd.dll, AcMgd.dll, Autodesk.AutoCAD.Interop.Common.dll (I have tried both 32 &amp;amp; 64 bit), Autodesk.AutoCAD.Interop.dll(I have tried both 32 &amp;amp; 64 bit).&lt;BR /&gt;When tried to drill thru the intellisense ojects like in the demo it stops in certian locations. I tried to manually type in the code it gives me a blue underline and will not complie.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Imports Autodesk.AutoCAD.Interop&lt;BR /&gt;Imports Autodesk.AutoCAD.Interop.Common&lt;BR /&gt;Public Class AdskCommands&lt;BR /&gt;Public ReadOnly Property ThisDrawing() As AcadDocument&lt;BR /&gt;Get&lt;BR /&gt;**This is what it suppose to look like**&lt;BR /&gt;Return Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.AcadDocument&lt;BR /&gt;**Here is where it stops**&lt;BR /&gt;Return Autodesk.AutoCAD.ApplicationServices.Application.&amp;lt;&amp;lt;STOPS HERE&amp;gt;&amp;gt;&lt;BR /&gt;End Get&lt;BR /&gt;End Property&lt;/P&gt;&lt;P&gt;**This is what it suppose to look like**&lt;BR /&gt;&amp;lt;Autodesk.AutoCAD.Runtime.CommandMethod("myRoutine")&amp;gt;&lt;BR /&gt;**Here is where it stops**&lt;BR /&gt;&amp;lt;Autodesk.AutoCAD.Runtime.&amp;lt;&amp;lt;STOPS HERE&amp;gt;&amp;gt;&lt;BR /&gt;Public Sub myRoutine()&lt;BR /&gt;ThisDrawing.Utility.Prompt("Hello World")&lt;BR /&gt;End Sub&lt;BR /&gt;End Class&lt;/P&gt;&lt;P&gt;Thank you in advance for any advice or help.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Apr 2015 17:18:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/5567311#M40656</guid>
      <dc:creator>Jedimaster</dc:creator>
      <dc:date>2015-04-01T17:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/5568558#M40657</link>
      <description>&lt;P&gt;I clear the second problem with the&amp;nbsp;&lt;SPAN&gt;Autodesk.AutoCAD.Runtime.&amp;nbsp;Refenced AcCoreMGD.dll and added "Imports Autodesk.AutoCAD.Runtime". I am still getting an error "error BC30456: 'AcadDocument' is not a member of 'Autodesk.AutoCAD.ApplicationServices.Document'." I have tried adding "Imports Autodesk.AutoCAD.ApplicationServices.DocumentExtension"&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Apr 2015 13:25:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/5568558#M40657</guid>
      <dc:creator>Jedimaster</dc:creator>
      <dc:date>2015-04-02T13:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/5568644#M40658</link>
      <description>&lt;P&gt;I found solution thanks to&amp;nbsp;by _gile&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A target="_self" href="https://forums.autodesk.com/t5/net/2014-conversion/td-p/4405227"&gt;http://forums.autodesk.com/t5/net/2014-conversion/td-p/4405227&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Replaced&lt;/P&gt;&lt;P&gt;Return Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.AcadDocument&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;with&lt;/P&gt;&lt;P&gt;Return Application.DocumentManager.MdiActiveDocument.GetAcadDocument()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and added&lt;/P&gt;&lt;P&gt;Imports Autodesk.AutoCAD.ApplicationServices&lt;BR /&gt;Imports Autodesk.AutoCAD.ApplicationServices.DocumentExtension&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AutoDesk or ADN need to update their documentation. &lt;A target="_self" href="http://download.autodesk.com/media/adn/DevTV_VBA_Migration/english/DevTV_VBA_To_VBdotNet_Migration_English.html"&gt;http://download.autodesk.com/media/adn/DevTV_VBA_Migration/english/DevTV_VBA_To_VBdotNet_Migration_English.html&lt;/A&gt;&amp;nbsp;They are always&amp;nbsp;hounding us to upgrade our software. Maybe if they updated their documentation&amp;nbsp;and fixed known problems we would be more inclined to upgrade.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Apr 2015 14:06:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/5568644#M40658</guid>
      <dc:creator>Jedimaster</dc:creator>
      <dc:date>2015-04-02T14:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/5574793#M40659</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Sorry about the problem you had with the migration material, indeed was designed for our initial migration, but then the API changed...&lt;BR /&gt;&lt;BR /&gt;And I'm glad you're migration from VBA to VB.NET, please let us know if you need further assistance. &lt;BR /&gt;</description>
      <pubDate>Tue, 07 Apr 2015 22:38:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/5574793#M40659</guid>
      <dc:creator>augusto.goncalves</dc:creator>
      <dc:date>2015-04-07T22:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6316073#M40660</link>
      <description>&lt;P&gt;I'm experiencing the same issue but mine are not resolved by the suggested fixes which I already had in place. &amp;nbsp;My code errors on the below lines:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; Dim acDocMgr As DocumentCollection = Application.DocumentManager
        Dim doc As Document = acDocMgr.MdiActiveDocument
        Dim aDoc As AcadDocument
        aDoc = doc.GetAcadDocument()&lt;/PRE&gt;&lt;P&gt;The error fails on the variable aDoc. &amp;nbsp;It throws the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'GetAcadDocument()' is not a member of 'Document'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following imported namespaces as well:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Imports Autodesk.AutoCAD.ApplicationServices&lt;BR /&gt;Imports Autodesk.AutoCAD.Runtime&lt;BR /&gt;Imports Autodesk.AutoCAD.Interop&lt;BR /&gt;Imports Autodesk.AutoCAD.Interop.Common&lt;BR /&gt;Imports Autodesk.AutoCAD&lt;BR /&gt;Imports Autodesk.AutoCAD.ApplicationServices.DocumentExtension&lt;BR /&gt;Imports Autodesk.AutoCAD.ApplicationServices.DocumentCollectionExtension&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas as to what may be causing this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2016 17:57:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6316073#M40660</guid>
      <dc:creator>frosty1_4me</dc:creator>
      <dc:date>2016-05-09T17:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6316141#M40661</link>
      <description>&lt;P&gt;if you are using AutoCAD 2012 or older, no, you cannot use that line of code &amp;nbsp;- GetAcadDocument();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you use AutoCAD 2013 or later, you need to add at least 3 references:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;accoremgd.dll&lt;/P&gt;
&lt;P&gt;acdbmgd.dll&lt;/P&gt;
&lt;P&gt;acmgd.dll&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2016 18:00:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6316141#M40661</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2016-05-09T18:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6316160#M40662</link>
      <description>&lt;P&gt;I do have those 3 references you listed.&amp;nbsp;&amp;nbsp; The errors appear when attempting to compile the project in VS2015.&amp;nbsp; Using an older version of VS2013 and it compiles fine without issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using 2014 acad map3d and now moving to 2016 map3d.&amp;nbsp; It's compiled as a 4.0 .net application.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perhaps its the version of interop dlls and those other autocad dlls that are causing the issue.&amp;nbsp; Since I embed the dlls within the .Net project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the response.&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2016 18:05:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6316160#M40662</guid>
      <dc:creator>frosty1_4me</dc:creator>
      <dc:date>2016-05-09T18:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6316342#M40663</link>
      <description>&lt;P&gt;I updated the dll's to use the 2016 installed version and it created more errors as well as continuing with the ones I'm attempting at fixing.&amp;nbsp; I'd like those fixed before I introduce more.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2016 19:21:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6316342#M40663</guid>
      <dc:creator>frosty1_4me</dc:creator>
      <dc:date>2016-05-09T19:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6353672#M40664</link>
      <description>&lt;P&gt;I'm having the same problem.&amp;nbsp; This code worked from VS2012 in ACD2016.&amp;nbsp; I recently upgraded to VS2015 and now I'm getting the following error:&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;TABLE border="1" cellspacing="1" cellpadding="9"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;FONT size="1"&gt;Severity&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;FONT size="1"&gt;Code&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;FONT size="1"&gt;Description&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;FONT size="1"&gt;Project&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;FONT size="1"&gt;File&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;FONT size="1"&gt;Line&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;FONT size="1"&gt;Suppression State&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;FONT size="1"&gt;Error&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;FONT size="1"&gt;BC30456&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;FONT size="1"&gt;'GetAcadDocument' is not a member of 'Document'.&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;FONT size="1"&gt;bks_acd2016_01&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;FONT size="1"&gt;D:\Visual Studio 2012\Projects\bks_acd2016_01\bks_acd2016_01\AdskCommands.vb&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;FONT size="1"&gt;11&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;FONT size="1"&gt;Active&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Fri, 27 May 2016 23:11:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6353672#M40664</guid>
      <dc:creator>brian.k.smith</dc:creator>
      <dc:date>2016-05-27T23:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6353809#M40665</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;GetAcadDocument is an &lt;A href="https://msdn.microsoft.com/en-us/library/bb384936.aspx" target="_blank"&gt;extension method&lt;/A&gt; defined in the DocumentExtension static class (module in VB).&lt;/P&gt;
&lt;P&gt;Using extensions methods with VB is not as comfortable as with C#, e.g. with VB you may need to bring in scope extension methods by 'importing' the module:&lt;/P&gt;
&lt;PRE&gt;Imports Autodesk.AutoCAD.ApplicationServices.DocumentExtension&lt;/PRE&gt;
&lt;P&gt;Then you should be able to call the GetAcadDocument() method as an instance method of the Document type (the extended type)&lt;/P&gt;
&lt;PRE&gt;doc.GetAcadDocument()&lt;/PRE&gt;
&lt;P&gt;Anyway, as extension methods are static methods (Shared in VB), you can also call them with classical way.&lt;/P&gt;
&lt;PRE&gt;DocumentExtension.GetAcadDocument(doc)&lt;/PRE&gt;</description>
      <pubDate>Sat, 28 May 2016 06:24:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6353809#M40665</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2016-05-28T06:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358111#M40666</link>
      <description>&lt;P&gt;In my code example, I do call the DocumentExtension but I'm still having issues.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Imports Autodesk.AutoCAD.ApplicationServices.DocumentExtension
Imports Autodesk.AutoCAD.ApplicationServices.DocumentCollectionExtension&lt;/PRE&gt;&lt;PRE&gt;This Module contains functions that are reference in the project.
    'Some modules can be referenced directly, others are a template to be copied into the required module, and modified.

    Public WithEvents ThisDrawing As Autodesk.AutoCAD.Interop.AcadDocument = Autodesk.AutoCAD.ApplicationServices.Application.AcadApplication.ActiveDocument
    Public WithEvents docs As Autodesk.AutoCAD.ApplicationServices.DocumentCollection = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager
    Public WithEvents acadApp As Autodesk.AutoCAD.Interop.AcadApplication


    Private Sub docs_DocumentActivated(ByVal sender As Object, ByVal e As Autodesk.AutoCAD.ApplicationServices.DocumentCollectionEventArgs) Handles docs.DocumentActivated
        ThisDrawing = e.Document.GetAcadDocument()
    End Sub&lt;/PRE&gt;&lt;P&gt;The above code fails on the e.Document.GetAcadDocument() as GetAcadDocument not a member of Document.&amp;nbsp; I've tried ever options for that and still no luck.&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 17:47:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358111#M40666</guid>
      <dc:creator>frosty1_4me</dc:creator>
      <dc:date>2016-05-31T17:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358286#M40667</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry but I cannot help very much further.&lt;/P&gt;
&lt;P&gt;This topic seems to be very well named, all the thread I read about GetAcadDocument() issues were also related to VB.&lt;/P&gt;
&lt;P&gt;It seems to me most of the problems with this method are related to VB specific behavior (extension methods, modules, ...).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What happens if you call the method as a staic (Shared) method.&lt;/P&gt;
&lt;PRE&gt;ThisDrawing = DocumentExtension.GetAcadDocument(e.Document)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 18:55:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358286#M40667</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2016-05-31T18:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358292#M40668</link>
      <description>Did you add all references in to the project?</description>
      <pubDate>Tue, 31 May 2016 18:47:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358292#M40668</guid>
      <dc:creator>Jedimaster</dc:creator>
      <dc:date>2016-05-31T18:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358310#M40669</link>
      <description>&lt;P&gt;I believe so, unless there is one missing or changed:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- acadbmgd&lt;/P&gt;&lt;P&gt;- Autocad.interop&lt;/P&gt;&lt;P&gt;- Autcad.interop.common&lt;/P&gt;&lt;P&gt;- interop.autocadMap&lt;/P&gt;&lt;P&gt;- ManagedMapAPI&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;those are the ones in my project.&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 18:56:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358310#M40669</guid>
      <dc:creator>frosty1_4me</dc:creator>
      <dc:date>2016-05-31T18:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358416#M40670</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/275200"&gt;@frosty1_4me﻿&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Aren't &lt;STRONG&gt;accoremgd&lt;/STRONG&gt; and &lt;STRONG&gt;acmgd&lt;/STRONG&gt; references missing? DocumentExtension is part of acmgd.dll&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe this can help:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://adndevblog.typepad.com/autocad/2012/05/extension-methods-in-autocad-2013.html" target="_blank"&gt;http://adndevblog.typepad.com/autocad/2012/05/extension-methods-in-autocad-2013.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 19:53:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358416#M40670</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2016-05-31T19:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358469#M40671</link>
      <description>&lt;P&gt;My applogies,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, those two are also reference in the project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just find it strange this works in VS2013 but not in VS2015.&amp;nbsp; It's the same project.&amp;nbsp; In order to trouble shoot the project we are currently rolling back to use 2013 when necessary.&amp;nbsp; I've checked the target framework as well and it matches 2013 so that is not an issue.&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 20:04:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358469#M40671</guid>
      <dc:creator>frosty1_4me</dc:creator>
      <dc:date>2016-05-31T20:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358598#M40672</link>
      <description>&lt;P&gt;Did you try calling GetAcadDocument() as a static (Shared) method!&lt;/P&gt;
&lt;PRE&gt;ThisDrawing = DocumentExtension.GetAcadDocument(e.Document)&lt;/PRE&gt;</description>
      <pubDate>Tue, 31 May 2016 21:12:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358598#M40672</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2016-05-31T21:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358669#M40673</link>
      <description>&lt;P&gt;No, I hadn't tried that!&amp;nbsp; Ok, I've give that a go and let you know the result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 21:53:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6358669#M40673</guid>
      <dc:creator>frosty1_4me</dc:creator>
      <dc:date>2016-05-31T21:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with VB .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6370553#M40674</link>
      <description>&lt;P&gt;That did the trick.&amp;nbsp; It also set me on a path to correct many other functions that were having similar problems.&amp;nbsp; Must have been a change to the acad map api from the previous version I was using.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jun 2016 15:33:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problems-with-vb-net/m-p/6370553#M40674</guid>
      <dc:creator>frosty1_4me</dc:creator>
      <dc:date>2016-06-07T15:33:40Z</dc:date>
    </item>
  </channel>
</rss>

