<?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: problem with user defined control in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333507#M84992</link>
    <description>Jon,&lt;BR /&gt;
 I was able to reproduce the error - thanks for the steps. However I don't think this is an acad bug. It is a visual studio bug (haven't checked to see if this is fixed in VS 2003). If for example you set the "Copy Local" property of acmgd.dll to False you can see the form in design mode. I think VS wrongly looks at acmgd for some reason when it loads the UserControl. I found this problem is common among apps that derive their own forms. VS instantiates the controls in order to display them.&lt;BR /&gt;
&lt;BR /&gt;
Krishna Kalvai&lt;BR /&gt;
DevTech&lt;BR /&gt;
Autodesk</description>
    <pubDate>Wed, 25 May 2005 16:27:29 GMT</pubDate>
    <dc:creator>KrishnaK</dc:creator>
    <dc:date>2005-05-25T16:27:29Z</dc:date>
    <item>
      <title>problem with user defined control</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333504#M84989</link>
      <description>Has anybody here ever created a user defined control and then used that&lt;BR /&gt;
control on a form in the same project?  Whenever I do this, for some reason&lt;BR /&gt;
the form will not display in Design mode.  I can view the code, and the&lt;BR /&gt;
project runs successfully, but the Designer throws an exception and says&lt;BR /&gt;
that there is a problem with the code (but doesn't say anything else about&lt;BR /&gt;
the problem).  If I build the project, start a NEW project and set a&lt;BR /&gt;
reference to the first project, I can use the user defined control without&lt;BR /&gt;
any problems.  The error only happens if I try to use the control in the&lt;BR /&gt;
same project where the control is defined.&lt;BR /&gt;
&lt;BR /&gt;
Has anybody else seen this problem or know how to fix it?  I am using VS.NET&lt;BR /&gt;
7.0 (2002) without the service pack (for compatability reasons).&lt;BR /&gt;
&lt;BR /&gt;
Jon</description>
      <pubDate>Mon, 23 May 2005 13:13:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333504#M84989</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-05-23T13:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: problem with user defined control</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333505#M84990</link>
      <description>Hi Jon,&lt;BR /&gt;
&lt;BR /&gt;
 I have seen this problem with dockingPalette SDK sample. I thought I messed up VS generated code, which I could have because I was trying to add a custom combo box on the palette. I found a blog that talks about this - http://weblogs.asp.net/rweigelt/archive/2003/09/04/26262.aspx&lt;BR /&gt;
I didn't try to fix this, so if you found a way, please let me know!&lt;BR /&gt;
&lt;BR /&gt;
Krishna Kalvai&lt;BR /&gt;
DevTech&lt;BR /&gt;
Autodesk</description>
      <pubDate>Tue, 24 May 2005 20:06:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333505#M84990</guid>
      <dc:creator>KrishnaK</dc:creator>
      <dc:date>2005-05-24T20:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: problem with user defined control</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333506#M84991</link>
      <description>Hi Krishna,&lt;BR /&gt;
&lt;BR /&gt;
Thanks for replying.  That link provides some useful information.  I think&lt;BR /&gt;
the problem goes a little deeper than the solutions offered by that blog,&lt;BR /&gt;
however.  I don't believe the error is in my code - I think it has something&lt;BR /&gt;
to do with the AutoCAD managed dll's.  I did a little experimentation, and I&lt;BR /&gt;
think I tracked down the problem (but not the solution).  To reproduce this&lt;BR /&gt;
issue reliably, do this:&lt;BR /&gt;
&lt;BR /&gt;
Create a brand new VB class library project.&lt;BR /&gt;
Create a blank form in this project&lt;BR /&gt;
Create a user control in this project (but don't add or change any code)&lt;BR /&gt;
Build the project.&lt;BR /&gt;
Add the user control to the form.&lt;BR /&gt;
Close the form and re-open it.  It should open without a problem.&lt;BR /&gt;
Close the form again.&lt;BR /&gt;
Add a reference to acmgd.dll (2006)&lt;BR /&gt;
Open the form again.&lt;BR /&gt;
The designer throws an exception.&lt;BR /&gt;
Remove the reference to acmgd.dll&lt;BR /&gt;
Close the form and reopen it again.&lt;BR /&gt;
Everything is back to normal.&lt;BR /&gt;
&lt;BR /&gt;
If you'd prefer, I can submit a DHO ticket on this...&lt;BR /&gt;
&lt;BR /&gt;
Jon&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;KRISHNAK&gt; wrote in message news:4855100@discussion.autodesk.com...&lt;BR /&gt;
Hi Jon,&lt;BR /&gt;
&lt;BR /&gt;
 I have seen this problem with dockingPalette SDK sample. I thought I messed&lt;BR /&gt;
up VS generated code, which I could have because I was trying to add a&lt;BR /&gt;
custom combo box on the palette. I found a blog that talks about this -&lt;BR /&gt;
http://weblogs.asp.net/rweigelt/archive/2003/09/04/26262.aspx&lt;BR /&gt;
I didn't try to fix this, so if you found a way, please let me know!&lt;BR /&gt;
&lt;BR /&gt;
Krishna Kalvai&lt;BR /&gt;
DevTech&lt;BR /&gt;
Autodesk&lt;/KRISHNAK&gt;</description>
      <pubDate>Wed, 25 May 2005 12:31:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333506#M84991</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-05-25T12:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: problem with user defined control</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333507#M84992</link>
      <description>Jon,&lt;BR /&gt;
 I was able to reproduce the error - thanks for the steps. However I don't think this is an acad bug. It is a visual studio bug (haven't checked to see if this is fixed in VS 2003). If for example you set the "Copy Local" property of acmgd.dll to False you can see the form in design mode. I think VS wrongly looks at acmgd for some reason when it loads the UserControl. I found this problem is common among apps that derive their own forms. VS instantiates the controls in order to display them.&lt;BR /&gt;
&lt;BR /&gt;
Krishna Kalvai&lt;BR /&gt;
DevTech&lt;BR /&gt;
Autodesk</description>
      <pubDate>Wed, 25 May 2005 16:27:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333507#M84992</guid>
      <dc:creator>KrishnaK</dc:creator>
      <dc:date>2005-05-25T16:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: problem with user defined control</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333508#M84993</link>
      <description>Excellent!  Thank you so much for figuring this out - it was driving me&lt;BR /&gt;
crazy!!&lt;BR /&gt;
&lt;BR /&gt;
Jon&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;KRISHNAK&gt; wrote in message news:4856154@discussion.autodesk.com...&lt;BR /&gt;
Jon,&lt;BR /&gt;
 I was able to reproduce the error - thanks for the steps. However I don't&lt;BR /&gt;
think this is an acad bug. It is a visual studio bug (haven't checked to see&lt;BR /&gt;
if this is fixed in VS 2003). If for example you set the "Copy Local"&lt;BR /&gt;
property of acmgd.dll to False you can see the form in design mode. I think&lt;BR /&gt;
VS wrongly looks at acmgd for some reason when it loads the UserControl. I&lt;BR /&gt;
found this problem is common among apps that derive their own forms. VS&lt;BR /&gt;
instantiates the controls in order to display them.&lt;BR /&gt;
&lt;BR /&gt;
Krishna Kalvai&lt;BR /&gt;
DevTech&lt;BR /&gt;
Autodesk&lt;/KRISHNAK&gt;</description>
      <pubDate>Wed, 25 May 2005 17:35:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333508#M84993</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-05-25T17:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: problem with user defined control</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333509#M84994</link>
      <description>Glad to be of help!&lt;BR /&gt;
&lt;BR /&gt;
 Krishna</description>
      <pubDate>Wed, 25 May 2005 18:49:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333509#M84994</guid>
      <dc:creator>KrishnaK</dc:creator>
      <dc:date>2005-05-25T18:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: problem with user defined control</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333510#M84995</link>
      <description>I tried your suggestion to set the "Copy Local" property of acmgd.dll to False (I also did it for acdbmgd.dll).  When I try to add my user defined control to a form I get an error "Failed to load toolbox item 'conGetPoint'.  It will be removed from the toolbox.".&lt;BR /&gt;
&lt;BR /&gt;
I have narrowed down the problem to the following line in the user control "Dim cPoint As Geometry.Point3d".  Without the line the control can be added, with the line I get the error.&lt;BR /&gt;
&lt;BR /&gt;
I am using VS2005 and AutoCAD2008.&lt;BR /&gt;
&lt;BR /&gt;
Your help would be appreciated.</description>
      <pubDate>Wed, 26 May 2010 16:40:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333510#M84995</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-05-26T16:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: problem with user defined control</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333511#M84996</link>
      <description>The problem is that your control is trying to create an&lt;BR /&gt;
instance of an AutoCAD type inside of Visual Studio's&lt;BR /&gt;
designer.&lt;BR /&gt;
&lt;BR /&gt;
A designable-control cannot use types from AutoCAD's&lt;BR /&gt;
assemblies in code that runs in the designer/IDE.&lt;BR /&gt;
&lt;BR /&gt;
Without seeing your control's source, or the relevant&lt;BR /&gt;
parts of it, I can't tell you how to resolve that.&lt;BR /&gt;
&lt;BR /&gt;
You can use a test that tells if your control's code is&lt;BR /&gt;
running in the designer, or in AutoCAD, by reading&lt;BR /&gt;
the value of the DesignMode property (true means&lt;BR /&gt;
that the control is instantiated in the designer).&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&lt;BR /&gt;
Supporting AutoCAD 2000 through 2011&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;DICKINSON.FRED&gt; wrote in message &lt;BR /&gt;
news:6397745@discussion.autodesk.com...&lt;BR /&gt;
I tried your suggestion to set the "Copy Local" property of acmgd.dll to False &lt;BR /&gt;
(I also did it for acdbmgd.dll).  When I try to add my user defined control to a &lt;BR /&gt;
form I get an error "Failed to load toolbox item 'conGetPoint'.  It will be &lt;BR /&gt;
removed from the toolbox.".&lt;BR /&gt;
&lt;BR /&gt;
I have narrowed down the problem to the following line in the user control "Dim &lt;BR /&gt;
cPoint As Geometry.Point3d".  Without the line the control can be added, with &lt;BR /&gt;
the line I get the error.&lt;BR /&gt;
&lt;BR /&gt;
I am using VS2005 and AutoCAD2008.&lt;BR /&gt;
&lt;BR /&gt;
Your help would be appreciated.&lt;/DICKINSON.FRED&gt;</description>
      <pubDate>Wed, 26 May 2010 18:29:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333511#M84996</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-05-26T18:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: problem with user defined control</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333512#M84997</link>
      <description>Thanks.  It's good to know that its a VS / AutoCAD issue.&lt;BR /&gt;
&lt;BR /&gt;
Here is a stripped down version of the control code which resides in the same project as the form where I'm trying to insert the control.  The error happens when I try to add the control to the form.  I have a similar control for getting a distance but it uses a "Double" type.  Maybe I can return the 3 coordinates back as 3 doubles by getting them individually from pPromptPointResult.Value.X, Y, Z.&lt;BR /&gt;
&lt;BR /&gt;
The offending line is "Dim cMyPoint As Geometry.Point3d".&lt;BR /&gt;
&lt;BR /&gt;
{code&lt;BR /&gt;
&lt;BR /&gt;
Imports Autodesk.AutoCAD&lt;BR /&gt;
Imports Autodesk.AutoCAD.EditorInput&lt;BR /&gt;
&lt;BR /&gt;
Public Class conGetPointX&lt;BR /&gt;
&lt;BR /&gt;
    Dim cMyPoint As Geometry.Point3d&lt;BR /&gt;
    Public Property MYPoint() As Geometry.Point3d&lt;BR /&gt;
        Get&lt;BR /&gt;
            Return cMyPoint&lt;BR /&gt;
        End Get&lt;BR /&gt;
        Set(ByVal Value As Geometry.Point3d)&lt;BR /&gt;
            cMyPoint = Value&lt;BR /&gt;
        End Set&lt;BR /&gt;
    End Property&lt;BR /&gt;
&lt;BR /&gt;
    Private Sub PickBTN_Click( _&lt;BR /&gt;
        ByVal sender As System.Object, _&lt;BR /&gt;
        ByVal e As System.EventArgs _&lt;BR /&gt;
        ) Handles PickBTN.Click&lt;BR /&gt;
&lt;BR /&gt;
        GetPoint()&lt;BR /&gt;
&lt;BR /&gt;
        XTXT.Text = cMyPoint.X&lt;BR /&gt;
        YTXT.Text = cMyPoint.Y&lt;BR /&gt;
        ZTXT.Text = cMyPoint.Z&lt;BR /&gt;
&lt;BR /&gt;
    End Sub&lt;BR /&gt;
&lt;BR /&gt;
    Private Sub GetPoint()&lt;BR /&gt;
&lt;BR /&gt;
        Dim pDrawing As ApplicationServices.Document&lt;BR /&gt;
        pDrawing = ApplicationServices.Application.DocumentManager.MdiActiveDocument&lt;BR /&gt;
&lt;BR /&gt;
        Dim pEditor As Editor&lt;BR /&gt;
        pEditor = pDrawing.Editor&lt;BR /&gt;
&lt;BR /&gt;
        Dim pPromptPointOptions As New EditorInput.PromptPointOptions("")&lt;BR /&gt;
        With pPromptPointOptions&lt;BR /&gt;
            .Message = vbCrLf &amp;amp; "Enter coordinates or select a point:"&lt;BR /&gt;
            .AllowArbitraryInput = False&lt;BR /&gt;
            .AllowNone = False&lt;BR /&gt;
            .UseDashedLine = True&lt;BR /&gt;
        End With&lt;BR /&gt;
&lt;BR /&gt;
        Dim pPromptPointResult As EditorInput.PromptPointResult = Nothing&lt;BR /&gt;
        pPromptPointResult = pEditor.GetPoint(pPromptPointOptions)&lt;BR /&gt;
&lt;BR /&gt;
        Select Case pPromptPointResult.Status&lt;BR /&gt;
            Case PromptStatus.OK&lt;BR /&gt;
                cMyPoint = pPromptPointResult.Value&lt;BR /&gt;
        End Select&lt;BR /&gt;
&lt;BR /&gt;
    End Sub&lt;BR /&gt;
&lt;BR /&gt;
End Class&lt;BR /&gt;
&lt;BR /&gt;
/code}</description>
      <pubDate>Wed, 26 May 2010 19:21:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333512#M84997</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-05-26T19:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: problem with user defined control</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333513#M84998</link>
      <description>That's not going to work as you have it.&lt;BR /&gt;
&lt;BR /&gt;
Change your member variable and public&lt;BR /&gt;
property to double(3) (array of 3 doubles).&lt;BR /&gt;
&lt;BR /&gt;
You can still use Point3d in your class, but&lt;BR /&gt;
not in code that executes in the IDE.&lt;BR /&gt;
&lt;BR /&gt;
You should also apply these attributes to&lt;BR /&gt;
the public MyPoint property:&lt;BR /&gt;
&lt;BR /&gt;
   [Browsable(false)]&lt;BR /&gt;
   [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]&lt;BR /&gt;
&lt;BR /&gt;
You don't want that property to appear in&lt;BR /&gt;
the Properties window in the designer, and&lt;BR /&gt;
you don't want the designer to serialize its&lt;BR /&gt;
value either, which is what both of the above&lt;BR /&gt;
attributes will prevent.&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&lt;BR /&gt;
Supporting AutoCAD 2000 through 2011&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;DICKINSON.FRED&gt; wrote in message &lt;BR /&gt;
news:6397891@discussion.autodesk.com...&lt;BR /&gt;
Thanks.  It's good to know that its a VS / AutoCAD issue.&lt;BR /&gt;
&lt;BR /&gt;
Here is a stripped down version of the control code which resides in the same &lt;BR /&gt;
project as the form where I'm trying to insert the control.  The error happens &lt;BR /&gt;
when I try to add the control to the form.  I have a similar control for getting &lt;BR /&gt;
a distance but it uses a "Double" type.  Maybe I can return the 3 coordinates &lt;BR /&gt;
back as 3 doubles by getting them individually from pPromptPointResult.Value.X, &lt;BR /&gt;
Y, Z.&lt;BR /&gt;
&lt;BR /&gt;
The offending line is "Dim cMyPoint As Geometry.Point3d".&lt;BR /&gt;
&lt;BR /&gt;
{code&lt;BR /&gt;
&lt;BR /&gt;
Imports Autodesk.AutoCAD&lt;BR /&gt;
Imports Autodesk.AutoCAD.EditorInput&lt;BR /&gt;
&lt;BR /&gt;
Public Class conGetPointX&lt;BR /&gt;
&lt;BR /&gt;
    Dim cMyPoint As Geometry.Point3d&lt;BR /&gt;
    Public Property MYPoint() As Geometry.Point3d&lt;BR /&gt;
        Get&lt;BR /&gt;
            Return cMyPoint&lt;BR /&gt;
        End Get&lt;BR /&gt;
        Set(ByVal Value As Geometry.Point3d)&lt;BR /&gt;
            cMyPoint = Value&lt;BR /&gt;
        End Set&lt;BR /&gt;
    End Property&lt;BR /&gt;
&lt;BR /&gt;
    Private Sub PickBTN_Click( _&lt;BR /&gt;
        ByVal sender As System.Object, _&lt;BR /&gt;
        ByVal e As System.EventArgs _&lt;BR /&gt;
        ) Handles PickBTN.Click&lt;BR /&gt;
&lt;BR /&gt;
        GetPoint()&lt;BR /&gt;
&lt;BR /&gt;
        XTXT.Text = cMyPoint.X&lt;BR /&gt;
        YTXT.Text = cMyPoint.Y&lt;BR /&gt;
        ZTXT.Text = cMyPoint.Z&lt;BR /&gt;
&lt;BR /&gt;
    End Sub&lt;BR /&gt;
&lt;BR /&gt;
    Private Sub GetPoint()&lt;BR /&gt;
&lt;BR /&gt;
        Dim pDrawing As ApplicationServices.Document&lt;BR /&gt;
        pDrawing = &lt;BR /&gt;
ApplicationServices.Application.DocumentManager.MdiActiveDocument&lt;BR /&gt;
&lt;BR /&gt;
        Dim pEditor As Editor&lt;BR /&gt;
        pEditor = pDrawing.Editor&lt;BR /&gt;
&lt;BR /&gt;
        Dim pPromptPointOptions As New EditorInput.PromptPointOptions("")&lt;BR /&gt;
        With pPromptPointOptions&lt;BR /&gt;
            .Message = vbCrLf &amp;amp; "Enter coordinates or select a point:"&lt;BR /&gt;
            .AllowArbitraryInput = False&lt;BR /&gt;
            .AllowNone = False&lt;BR /&gt;
            .UseDashedLine = True&lt;BR /&gt;
        End With&lt;BR /&gt;
&lt;BR /&gt;
        Dim pPromptPointResult As EditorInput.PromptPointResult = Nothing&lt;BR /&gt;
        pPromptPointResult = pEditor.GetPoint(pPromptPointOptions)&lt;BR /&gt;
&lt;BR /&gt;
        Select Case pPromptPointResult.Status&lt;BR /&gt;
            Case PromptStatus.OK&lt;BR /&gt;
                cMyPoint = pPromptPointResult.Value&lt;BR /&gt;
        End Select&lt;BR /&gt;
&lt;BR /&gt;
    End Sub&lt;BR /&gt;
&lt;BR /&gt;
End Class&lt;BR /&gt;
&lt;BR /&gt;
/code}&lt;/DICKINSON.FRED&gt;</description>
      <pubDate>Wed, 26 May 2010 22:00:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333513#M84998</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-05-26T22:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: problem with user defined control</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333514#M84999</link>
      <description>Taking the Point3D out of the IDE interface and using an array of doubles for the public property fixed the problem.&lt;BR /&gt;
&lt;BR /&gt;
Thanks very much for your help.</description>
      <pubDate>Thu, 27 May 2010 12:04:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-user-defined-control/m-p/1333514#M84999</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-05-27T12:04:04Z</dc:date>
    </item>
  </channel>
</rss>

