The project you posted opens fine on my system, with no errors.
I also created a few test projects from scratch, and added inherited forms that derive from base forms that have public properties using types from acdbmgd.dll, and I no longer have any of the problems I've ranted about here in the past. No matter what I do, the forms open in the designer without any WSODs.
I'm not sure at this point what has changed on my system to mysteriously cause the problems to vanish, and the only things I did was install the .NET Framework 3.5, and the Visual Studio SDK 4.0 (Feburary 2007). You might try downloading and installing that too, because I now have a hunch that it could also have something to do with it:
http://www.microsoft.com/downloads/details.aspx?FamilyID=51A5C65B-C020-4E08-8AC0-3EB9C06996F4
Another thing you do, is make sure the path to acdbmgd and acmgd (e.g., the path to acad.exe), is on your system PATH.
--
http://www.caddzone.com
AcadXTabs: MDI Document Tabs for AutoCAD 2008
Supporting AutoCAD 2000 through 2008
http://www.acadxtabs.com
wrote in message news:5844513@discussion.autodesk.com...
Like this?
public partial class Form1 : Form {
private ObjectId id = ObjectId.Null;
public Form1() {
InitializeComponent();
}
}
If I inherits I receive the error from the IDE.
If I comment out the row " private ObjectId id = ObjectId.Null;" IDE shows me the inherited form....
I have same behaviour with 2006 and 2008 assembly!!