.NET
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

VS2002 Internal Compiler Error with ResultBufferEnumerator ???

8 REPLIES 8
Reply
Message 1 of 9
Anonymous
489 Views, 8 Replies

VS2002 Internal Compiler Error with ResultBufferEnumerator ???

I'm getting the output shown below, which appears to be
caused by this:


Object o = //

if( o is ResultBuffer )
{
ResultBuffer buf = (ResultBuffer) o;

/// iterating the ResultBuffer contents is
/// causing the error. commenting out this
/// foreach construct makes it go away:

foreach( TypedValue val in buf )
{
// Do something with val
}
}

Here is the compiler output copied from the output window:

-------------------------------------------------------------------------------------------------------
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7): likely culprit is 'BIND'.

An internal error has occurred in the compiler. To work around this problem, try simplifying or changing the program
near the locations listed below. Locations at the top of the list are closer to the point at which the internal error
occurred.

C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler Error: stage 'BIND' symbol
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler Error: stage 'BIND' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[], Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[], Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[], Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[], Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface'
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler Error: stage 'COMPILE' symbol 'RxAds'
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error: stage 'COMPILE' symbol ''
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error: stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'BEGIN'

Build complete -- 25 errors, 0 warnings
Building satellite assemblies...



---------------------- Done ----------------------

Build: 0 succeeded, 1 failed, 0 skipped






--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com
8 REPLIES 8
Message 2 of 9
Anonymous
in reply to: Anonymous

Yeah, VS2002 has its problems. I ran into this and others so usually use new
C# compilers.
Try casting buf to IEnumerable explicitly. It will be slightly slower but it
will compile at least.

Albert
"Tony Tanzillo" wrote in message
news:4864174@discussion.autodesk.com...
I'm getting the output shown below, which appears to be
caused by this:


Object o = //

if( o is ResultBuffer )
{
ResultBuffer buf = (ResultBuffer) o;

/// iterating the ResultBuffer contents is
/// causing the error. commenting out this
/// foreach construct makes it go away:

foreach( TypedValue val in buf )
{
// Do something with val
}
}

Here is the compiler output copied from the output window:

-------------------------------------------------------------------------------------------------------
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):
likely culprit is 'BIND'.

An internal error has occurred in the compiler. To work around this problem,
try simplifying or changing the program
near the locations listed below. Locations at the top of the list are closer
to the point at which the internal error
occurred.

C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface'
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol 'RxAds'
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:
stage 'COMPILE' symbol ''
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:
stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'BEGIN'

Build complete -- 25 errors, 0 warnings
Building satellite assemblies...



---------------------- Done ----------------------

Build: 0 succeeded, 1 failed, 0 skipped






--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com
Message 3 of 9
Anonymous
in reply to: Anonymous

Albert - Thanks, I'll try that.

--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com

"Albert Szilvasy" wrote in message news:4864160@discussion.autodesk.com...
Yeah, VS2002 has its problems. I ran into this and others so usually use new
C# compilers.
Try casting buf to IEnumerable explicitly. It will be slightly slower but it
will compile at least.

Albert
"Tony Tanzillo" wrote in message
news:4864174@discussion.autodesk.com...
I'm getting the output shown below, which appears to be
caused by this:


Object o = //

if( o is ResultBuffer )
{
ResultBuffer buf = (ResultBuffer) o;

/// iterating the ResultBuffer contents is
/// causing the error. commenting out this
/// foreach construct makes it go away:

foreach( TypedValue val in buf )
{
// Do something with val
}
}

Here is the compiler output copied from the output window:

-------------------------------------------------------------------------------------------------------
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):
likely culprit is 'BIND'.

An internal error has occurred in the compiler. To work around this problem,
try simplifying or changing the program
near the locations listed below. Locations at the top of the list are closer
to the point at which the internal error
occurred.

C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface'
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol 'RxAds'
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:
stage 'COMPILE' symbol ''
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:
stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'BEGIN'

Build complete -- 25 errors, 0 warnings
Building satellite assemblies...



---------------------- Done ----------------------

Build: 0 succeeded, 1 failed, 0 skipped






--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com
Message 4 of 9
Anonymous
in reply to: Anonymous

This wouldn't be such a pain if ObjectARX didn't require 2002...without the
service pack no less...



"Albert Szilvasy" wrote in message
news:4864160@discussion.autodesk.com...
Yeah, VS2002 has its problems. I ran into this and others so usually use new
C# compilers.
Try casting buf to IEnumerable explicitly. It will be slightly slower but it
will compile at least.

Albert
"Tony Tanzillo" wrote in message
news:4864174@discussion.autodesk.com...
I'm getting the output shown below, which appears to be
caused by this:


Object o = //

if( o is ResultBuffer )
{
ResultBuffer buf = (ResultBuffer) o;

/// iterating the ResultBuffer contents is
/// causing the error. commenting out this
/// foreach construct makes it go away:

foreach( TypedValue val in buf )
{
// Do something with val
}
}

Here is the compiler output copied from the output window:

----------------------------------------------------------------------------
---------------------------
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):
likely culprit is 'BIND'.

An internal error has occurred in the compiler. To work around this problem,
try simplifying or changing the program
near the locations listed below. Locations at the top of the list are closer
to the point at which the internal error
occurred.

C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface'
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol 'RxAds'
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:
stage 'COMPILE' symbol ''
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:
stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'BEGIN'

Build complete -- 25 errors, 0 warnings
Building satellite assemblies...



---------------------- Done ----------------------

Build: 0 succeeded, 1 failed, 0 skipped






--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com
Message 5 of 9
Anonymous
in reply to: Anonymous

My understanding is that VS2002 or 2003 is ok for
managed apps.

--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com

"Jon Rizzo" wrote in message news:4864226@discussion.autodesk.com...
This wouldn't be such a pain if ObjectARX didn't require 2002...without the
service pack no less...



"Albert Szilvasy" wrote in message
news:4864160@discussion.autodesk.com...
Yeah, VS2002 has its problems. I ran into this and others so usually use new
C# compilers.
Try casting buf to IEnumerable explicitly. It will be slightly slower but it
will compile at least.

Albert
"Tony Tanzillo" wrote in message
news:4864174@discussion.autodesk.com...
I'm getting the output shown below, which appears to be
caused by this:


Object o = //

if( o is ResultBuffer )
{
ResultBuffer buf = (ResultBuffer) o;

/// iterating the ResultBuffer contents is
/// causing the error. commenting out this
/// foreach construct makes it go away:

foreach( TypedValue val in buf )
{
// Do something with val
}
}

Here is the compiler output copied from the output window:

----------------------------------------------------------------------------
---------------------------
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):
likely culprit is 'BIND'.

An internal error has occurred in the compiler. To work around this problem,
try simplifying or changing the program
near the locations listed below. Locations at the top of the list are closer
to the point at which the internal error
occurred.

C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface'
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol 'RxAds'
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:
stage 'COMPILE' symbol ''
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:
stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'BEGIN'

Build complete -- 25 errors, 0 warnings
Building satellite assemblies...



---------------------- Done ----------------------

Build: 0 succeeded, 1 failed, 0 skipped






--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com
Message 6 of 9
Anonymous
in reply to: Anonymous

Even for managed ObjectARX??

"Tony Tanzillo" wrote in message
news:4864253@discussion.autodesk.com...
My understanding is that VS2002 or 2003 is ok for
managed apps.

--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com

"Jon Rizzo" wrote in message
news:4864226@discussion.autodesk.com...
This wouldn't be such a pain if ObjectARX didn't require 2002...without the
service pack no less...



"Albert Szilvasy" wrote in message
news:4864160@discussion.autodesk.com...
Yeah, VS2002 has its problems. I ran into this and others so usually use new
C# compilers.
Try casting buf to IEnumerable explicitly. It will be slightly slower but it
will compile at least.

Albert
"Tony Tanzillo" wrote in message
news:4864174@discussion.autodesk.com...
I'm getting the output shown below, which appears to be
caused by this:


Object o = //

if( o is ResultBuffer )
{
ResultBuffer buf = (ResultBuffer) o;

/// iterating the ResultBuffer contents is
/// causing the error. commenting out this
/// foreach construct makes it go away:

foreach( TypedValue val in buf )
{
// Do something with val
}
}

Here is the compiler output copied from the output window:

----------------------------------------------------------------------------
---------------------------
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):
likely culprit is 'BIND'.

An internal error has occurred in the compiler. To work around this problem,
try simplifying or changing the program
near the locations listed below. Locations at the top of the list are closer
to the point at which the internal error
occurred.

C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface'
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol 'RxAds'
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:
stage 'COMPILE' symbol ''
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:
stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'BEGIN'

Build complete -- 25 errors, 0 warnings
Building satellite assemblies...



---------------------- Done ----------------------

Build: 0 succeeded, 1 failed, 0 skipped






--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com
Message 7 of 9
Anonymous
in reply to: Anonymous

The requirement that you must use VS2002 when you use ObjectARX comes from 2
facts:
1. C++ name mangling rules are not standarized and they can change (in fact
they did change between VS2002 and VS2003)
2. The memory management contract in some ObjectARX API relies the caller
(you code) and the callee (AutoCAD) to share the same C/C++ runtime
(msvcr70.dll)

When you use the .NET API neither #1 nor #2 applies. If you build ObjectARX
applications with the /CLR C++ compiler flag then both #1 and #2 applies.
I'm not sure what you mean by managed ObjectARX. Can you clarify? (I know I
should be more familiar with our own marketing terms.)

Albert

"Jon Rizzo" wrote in message
news:4864438@discussion.autodesk.com...
Even for managed ObjectARX??

"Tony Tanzillo" wrote in message
news:4864253@discussion.autodesk.com...
My understanding is that VS2002 or 2003 is ok for
managed apps.

--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com

"Jon Rizzo" wrote in message
news:4864226@discussion.autodesk.com...
This wouldn't be such a pain if ObjectARX didn't require 2002...without the
service pack no less...



"Albert Szilvasy" wrote in message
news:4864160@discussion.autodesk.com...
Yeah, VS2002 has its problems. I ran into this and others so usually use new
C# compilers.
Try casting buf to IEnumerable explicitly. It will be slightly slower but it
will compile at least.

Albert
"Tony Tanzillo" wrote in message
news:4864174@discussion.autodesk.com...
I'm getting the output shown below, which appears to be
caused by this:


Object o = //

if( o is ResultBuffer )
{
ResultBuffer buf = (ResultBuffer) o;

/// iterating the ResultBuffer contents is
/// causing the error. commenting out this
/// foreach construct makes it go away:

foreach( TypedValue val in buf )
{
// Do something with val
}
}

Here is the compiler output copied from the output window:

----------------------------------------------------------------------------
---------------------------
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):
likely culprit is 'BIND'.

An internal error has occurred in the compiler. To work around this problem,
try simplifying or changing the program
near the locations listed below. Locations at the top of the list are closer
to the point at which the internal error
occurred.

C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface'
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol 'RxAds'
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:
stage 'COMPILE' symbol ''
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:
stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'BEGIN'

Build complete -- 25 errors, 0 warnings
Building satellite assemblies...



---------------------- Done ----------------------

Build: 0 succeeded, 1 failed, 0 skipped






--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com
Message 8 of 9
Anonymous
in reply to: Anonymous

What is 'managed ObjectARX' ?

--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com

"Jon Rizzo" wrote in message news:4864438@discussion.autodesk.com...
Even for managed ObjectARX??

"Tony Tanzillo" wrote in message
news:4864253@discussion.autodesk.com...
My understanding is that VS2002 or 2003 is ok for
managed apps.

--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com

"Jon Rizzo" wrote in message
news:4864226@discussion.autodesk.com...
This wouldn't be such a pain if ObjectARX didn't require 2002...without the
service pack no less...



"Albert Szilvasy" wrote in message
news:4864160@discussion.autodesk.com...
Yeah, VS2002 has its problems. I ran into this and others so usually use new
C# compilers.
Try casting buf to IEnumerable explicitly. It will be slightly slower but it
will compile at least.

Albert
"Tony Tanzillo" wrote in message
news:4864174@discussion.autodesk.com...
I'm getting the output shown below, which appears to be
caused by this:


Object o = //

if( o is ResultBuffer )
{
ResultBuffer buf = (ResultBuffer) o;

/// iterating the ResultBuffer contents is
/// causing the error. commenting out this
/// foreach construct makes it go away:

foreach( TypedValue val in buf )
{
// Do something with val
}
}

Here is the compiler output copied from the output window:

----------------------------------------------------------------------------
---------------------------
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):
likely culprit is 'BIND'.

An internal error has occurred in the compiler. To work around this problem,
try simplifying or changing the program
near the locations listed below. Locations at the top of the list are closer
to the point at which the internal error
occurred.

C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface'
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol 'RxAds'
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:
stage 'COMPILE' symbol ''
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:
stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'BEGIN'

Build complete -- 25 errors, 0 warnings
Building satellite assemblies...



---------------------- Done ----------------------

Build: 0 succeeded, 1 failed, 0 skipped






--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com
Message 9 of 9
Anonymous
in reply to: Anonymous

I just meant calling managed C++ from an ObjectARX module...you answered my
question, thanks....



"Albert Szilvasy" wrote in message
news:4864823@discussion.autodesk.com...
The requirement that you must use VS2002 when you use ObjectARX comes from 2
facts:
1. C++ name mangling rules are not standarized and they can change (in fact
they did change between VS2002 and VS2003)
2. The memory management contract in some ObjectARX API relies the caller
(you code) and the callee (AutoCAD) to share the same C/C++ runtime
(msvcr70.dll)

When you use the .NET API neither #1 nor #2 applies. If you build ObjectARX
applications with the /CLR C++ compiler flag then both #1 and #2 applies.
I'm not sure what you mean by managed ObjectARX. Can you clarify? (I know I
should be more familiar with our own marketing terms.)

Albert

"Jon Rizzo" wrote in message
news:4864438@discussion.autodesk.com...
Even for managed ObjectARX??

"Tony Tanzillo" wrote in message
news:4864253@discussion.autodesk.com...
My understanding is that VS2002 or 2003 is ok for
managed apps.

--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com

"Jon Rizzo" wrote in message
news:4864226@discussion.autodesk.com...
This wouldn't be such a pain if ObjectARX didn't require 2002...without the
service pack no less...



"Albert Szilvasy" wrote in message
news:4864160@discussion.autodesk.com...
Yeah, VS2002 has its problems. I ran into this and others so usually use new
C# compilers.
Try casting buf to IEnumerable explicitly. It will be slightly slower but it
will compile at least.

Albert
"Tony Tanzillo" wrote in message
news:4864174@discussion.autodesk.com...
I'm getting the output shown below, which appears to be
caused by this:


Object o = //

if( o is ResultBuffer )
{
ResultBuffer buf = (ResultBuffer) o;

/// iterating the ResultBuffer contents is
/// causing the error. commenting out this
/// foreach construct makes it go away:

foreach( TypedValue val in buf )
{
// Do something with val
}
}

Here is the compiler output copied from the output window:

----------------------------------------------------------------------------
---------------------------
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):
likely culprit is 'BIND'.

An internal error has occurred in the compiler. To work around this problem,
try simplifying or changing the program
near the locations listed below. Locations at the top of the list are closer
to the point at which the internal error
occurred.

C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler
Error: stage 'BIND'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'BIND' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface.BuildCommandList(object[],
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol
'RxAds.CommandLineInterface'
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler
Error: stage 'COMPILE' symbol 'RxAds'
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:
stage 'COMPILE' symbol ''
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:
stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'COMPILE'
error CS0587: Internal Compiler Error: stage 'BEGIN'

Build complete -- 25 errors, 0 warnings
Building satellite assemblies...



---------------------- Done ----------------------

Build: 0 succeeded, 1 failed, 0 skipped






--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk DevCon in Munich May 28-29th


Autodesk Design & Make Report

”Boost