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

how to set or get the systemvariables

14 REPLIES 14
Reply
Message 1 of 15
Anonymous
1165 Views, 14 Replies

how to set or get the systemvariables

Hello,

i want to get or set the system variables in managed .net application. please help me how to do this

Shaik Esu
14 REPLIES 14
Message 2 of 15
Anonymous
in reply to: Anonymous

for setting:

Autodesk..autocad.Application.SetSystemVariable("PICKSTYLE", 0)

for read:

dim var as object

var=Autodesk..autocad.Application.GetSystemVariable("PICKSTYLE")

try this

Ciao

GPaolo



ha scritto nel messaggio
news:5477760@discussion.autodesk.com...
Hello,

i want to get or set the system variables in managed .net application.
please help me how to do this

Shaik Esu
Message 3 of 15
Anonymous
in reply to: Anonymous

It depends on the type of system variable.

For those that are saved with each drawing,
most are properties of the Database object.

For others, use the methods GPaulo shows.

--
http://www.caddzone.com

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

wrote in message news:5477760@discussion.autodesk.com...
Hello,

i want to get or set the system variables in managed .net application. please help me how to do this

Shaik Esu
Message 4 of 15
HugoCef
in reply to: Anonymous

How i CAN set the DIM variable (DIMBLCK) in a vb.net application, I Need to change from "Closed Filled" To "_ArchiTick". please help me how to do this
Message 5 of 15
Anonymous
in reply to: Anonymous

Hi
Here is two subs
First one will be to change arrow blocks
for the selected dimension, second one
will be to change system variables
You need to varnish these both because they
are was written quickly

~'J'~

_
Public Sub ChangeArrowBlock()
Dim ed As Editor = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor
Dim db As Database = HostApplicationServices.WorkingDatabase
Dim prOpt As PromptEntityOptions = New PromptEntityOptions(vbCr & "Select Dimension To Change Arrow Block: ")
prOpt.SetRejectMessage(vbCr & "Only Dimensions may be selected.")
prOpt.AddAllowedClass(GetType(AlignedDimension), True)
prOpt.AddAllowedClass(GetType(RotatedDimension), True)
prOpt.AddAllowedClass(GetType(ArcDimension), True)
prOpt.AddAllowedClass(GetType(LineAngularDimension2), True)
prOpt.AddAllowedClass(GetType(DiametricDimension), True)
prOpt.AddAllowedClass(GetType(Point3AngularDimension), True)
prOpt.AddAllowedClass(GetType(RadialDimension), True)
prOpt.AddAllowedClass(GetType(RadialDimensionLarge), True)

Dim rs As PromptEntityResult = ed.GetEntity(prOpt)
If rs.Status = PromptStatus.OK Then
Using trans As Transaction = db.TransactionManager.StartTransaction()
Dim dime As Dimension = CType(trans.GetObject(rs.ObjectId, OpenMode.ForWrite), Dimension)
If Not dime Is Nothing Then
' here we go:
Dim bt As BlockTable = CType(trans.GetObject(db.BlockTableId, OpenMode.ForRead, False), BlockTable)
Dim btr As BlockTableRecord = CType(trans.GetObject(bt.Item("_ARCHTICK"), OpenMode.ForRead), BlockTableRecord)
Dim blkId As ObjectId = btr.ObjectId
Dim dtr As DimStyleTableRecord = dime.GetDimstyleData

dtr.Dimblk = blkId
dtr.Dimblk1 = blkId
dtr.Dimblk2 = blkId
MsgBox(dtr.Name)
dime.SetDimstyleData(dtr)
' if you need to change arrows for dimstyle also:
'db.SetDimstyleData(dtr)
ed.Regen()
Else
MsgBox("You are stumb as always, Fatty")
End If
trans.Commit()
End Using
End If
End Sub
_
Public Sub ChangeArrowBlockSysVar()

Dim ed As Editor = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor
Dim db As Database = HostApplicationServices.WorkingDatabase
Using trans As Transaction = db.TransactionManager.StartTransaction()

Dim bt As BlockTable = CType(trans.GetObject(db.BlockTableId, OpenMode.ForRead, False), BlockTable)
Dim btr As BlockTableRecord = CType(trans.GetObject(bt.Item("_ARCHTICK"), OpenMode.ForRead), BlockTableRecord)
Dim blkId As ObjectId = btr.ObjectId
db.Dimblk = blkId
db.Dimblk1 = blkId
db.Dimblk2 = blkId
trans.Commit()

End Using
End Sub
Message 6 of 15
Anonymous
in reply to: Anonymous

This wrong:

prOpt.AddAllowedClass(GetType(AlignedDimension), True)
prOpt.AddAllowedClass(GetType(RotatedDimension), True)
prOpt.AddAllowedClass(GetType(ArcDimension), True)
prOpt.AddAllowedClass(GetType(LineAngularDimension2), True)
prOpt.AddAllowedClass(GetType(DiametricDimension), True)
prOpt.AddAllowedClass(GetType(Point3AngularDimension), True)
prOpt.AddAllowedClass(GetType(RadialDimension), True)
prOpt.AddAllowedClass(GetType(RadialDimensionLarge), True)

Instead of all of that, only this is needed:

prOpt.AddAllowedClass(GetType(Dimension), False)

--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2008
Supporting AutoCAD 2000 through 2008
http://www.acadxtabs.com

wrote in message news:5622592@discussion.autodesk.com...
Hi
Here is two subs
First one will be to change arrow blocks
for the selected dimension, second one
will be to change system variables
You need to varnish these both because they
are was written quickly

~'J'~

_
Public Sub ChangeArrowBlock()
Dim ed As Editor = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor
Dim db As Database = HostApplicationServices.WorkingDatabase
Dim prOpt As PromptEntityOptions = New PromptEntityOptions(vbCr & "Select Dimension To Change Arrow Block: ")
prOpt.SetRejectMessage(vbCr & "Only Dimensions may be selected.")
prOpt.AddAllowedClass(GetType(AlignedDimension), True)
prOpt.AddAllowedClass(GetType(RotatedDimension), True)
prOpt.AddAllowedClass(GetType(ArcDimension), True)
prOpt.AddAllowedClass(GetType(LineAngularDimension2), True)
prOpt.AddAllowedClass(GetType(DiametricDimension), True)
prOpt.AddAllowedClass(GetType(Point3AngularDimension), True)
prOpt.AddAllowedClass(GetType(RadialDimension), True)
prOpt.AddAllowedClass(GetType(RadialDimensionLarge), True)

Dim rs As PromptEntityResult = ed.GetEntity(prOpt)
If rs.Status = PromptStatus.OK Then
Using trans As Transaction = db.TransactionManager.StartTransaction()
Dim dime As Dimension = CType(trans.GetObject(rs.ObjectId, OpenMode.ForWrite), Dimension)
If Not dime Is Nothing Then
' here we go:
Dim bt As BlockTable = CType(trans.GetObject(db.BlockTableId, OpenMode.ForRead, False), BlockTable)
Dim btr As BlockTableRecord = CType(trans.GetObject(bt.Item("_ARCHTICK"), OpenMode.ForRead), BlockTableRecord)
Dim blkId As ObjectId = btr.ObjectId
Dim dtr As DimStyleTableRecord = dime.GetDimstyleData

dtr.Dimblk = blkId
dtr.Dimblk1 = blkId
dtr.Dimblk2 = blkId
MsgBox(dtr.Name)
dime.SetDimstyleData(dtr)
' if you need to change arrows for dimstyle also:
'db.SetDimstyleData(dtr)
ed.Regen()
Else
MsgBox("You are stumb as always, Fatty")
End If
trans.Commit()
End Using
End If
End Sub
_
Public Sub ChangeArrowBlockSysVar()

Dim ed As Editor = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor
Dim db As Database = HostApplicationServices.WorkingDatabase
Using trans As Transaction = db.TransactionManager.StartTransaction()

Dim bt As BlockTable = CType(trans.GetObject(db.BlockTableId, OpenMode.ForRead, False), BlockTable)
Dim btr As BlockTableRecord = CType(trans.GetObject(bt.Item("_ARCHTICK"), OpenMode.ForRead), BlockTableRecord)
Dim blkId As ObjectId = btr.ObjectId
db.Dimblk = blkId
db.Dimblk1 = blkId
db.Dimblk2 = blkId
trans.Commit()

End Using
End Sub
Message 7 of 15
Anonymous
in reply to: Anonymous

>> Instead of all of that, only this is needed:

>> prOpt.AddAllowedClass(GetType(Dimension), False)

Thanks, but I've tried it before, will not
worked for me (A2007)
and works good with exact types
Regards,


~'J'~
Message 8 of 15
Anonymous
in reply to: Anonymous

Sorry Fatty, you're mistaken.

It works perfectly here.

--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2008
Supporting AutoCAD 2000 through 2008
http://www.acadxtabs.com

wrote in message news:5624432@discussion.autodesk.com...
>> Instead of all of that, only this is needed:

>> prOpt.AddAllowedClass(GetType(Dimension), False)

Thanks, but I've tried it before, will not
worked for me (A2007)
and works good with exact types
Regards,


~'J'~
Message 9 of 15
Anonymous
in reply to: Anonymous

Pardon me, Tony
You are right as always, I was mistaken
because I 've selected the certain dimension types
only, therefore cause is on

Regards,
my friends called me Oleg
Cheers 🙂

~'J'~
Message 10 of 15
Anonymous
in reply to: Anonymous

Fatty, if you only want certain dimension types,
then what you show is fine, but I don't think it
was what the OP seemed to need.

--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD 2008
Supporting AutoCAD 2000 through 2008
http://www.acadxtabs.com

wrote in message news:5624453@discussion.autodesk.com...
Pardon me, Tony
You are right as always, I was mistaken
because I 've selected the certain dimension types
only, therefore cause is on

Regards,
my friends called me Oleg
Cheers 🙂

~'J'~
Message 11 of 15
Anonymous
in reply to: Anonymous

Agreed 🙂

~'J'~
Message 12 of 15
HugoCef
in reply to: Anonymous

Thanks for answer me, but my problem is, when I'm creating my dimstyle ("DIM96") I have to set-Up the variables I don't have problems with most of them, but when i try to set up "DIMBLK" = "_ARCHTICK" the program show me a message like that "Value of type string cannot be converted to _Autodesk.autocad.databaseservices.objectId" I know is asking me for a block but i don't know how i can set up it
Thanks Again in advance
Message 13 of 15
Anonymous
in reply to: Anonymous

Sorry for the late

Try this instead

~'J'~

_
Public Sub MakeDimStyle()
Dim idd As ObjectId = CreateDimSt("DIM96", "_ARCHTICK")
End Sub

Public Shared Function CreateDimSt(ByVal dimstName As String, ByVal blkArrow As String) As ObjectId
Dim dimstId As ObjectId
Dim db As Database = HostApplicationServices.WorkingDatabase
Application.SetSystemVariable("DIMBLK", blkArrow)
Using tr As Transaction = db.TransactionManager.StartTransaction
Try
Dim dt As DimStyleTable = CType(tr.GetObject(db.DimStyleTableId, OpenMode.ForWrite), DimStyleTable)
If dt.Has(dimstName) Then
dimstId = dt(dimstName)
If dimstId.IsErased Then
Dim dtr As DimStyleTableRecord = CType(tr.GetObject(dimstId, OpenMode.ForWrite, True), DimStyleTableRecord)
dtr.Erase(False)
End If
Else
Dim bt As BlockTable = CType(tr.GetObject(db.BlockTableId, OpenMode.ForRead, False), BlockTable)
Dim blkId As ObjectId = bt(blkArrow)
Dim dtr As DimStyleTableRecord = New DimStyleTableRecord
dtr.Name = dimstName
dtr.Dimblk = blkId
dtr.Dimblk1 = blkId
dtr.Dimblk2 = blkId
'// add another variables here
'//...........................
dt.UpgradeOpen()
dimstId = dt.Add(dtr)
tr.AddNewlyCreatedDBObject(dtr, True)
db.Dimstyle = dimstId
End If
tr.Commit()
Finally
CType(tr, IDisposable).Dispose()
End Try
End Using
Return dimstId
End Function
Message 14 of 15
alainpoupart5574
in reply to: Anonymous

This piece of code will work fine only if the block "_ArchTick" exists in the blocktablerecord database. If none of the existing dimension style in the current drawing uses this block, it won't be existing.

Now the question is ... how can we programmatically create any dimstyle using specific block instead of arrow without having to access system variables such as DIMBLK, DIMBLK1, DIMBLK2 and DIMLDRBLK

Thanks
Message 15 of 15
tahershaker
in reply to: Anonymous

Dear Tony Tanzillo,

I've the same problem . it give me


Application does not support just-in-time (JIT)
debugging. See the end of this message for details.

************** Exception Text **************
Autodesk.AutoCAD.Runtime.Exception: eKeyNotFound
at Autodesk.AutoCAD.DatabaseServices.SymbolTable.get_Item(String key)
at BarBendingDet.BarBendingDet.CreateAndAssignALayer() in E:\Visual Studio 2012\Projects\autcad.NET\0000BarBendingDet\BarBendingDet\BarBendingDet\BarBendingDet.vb:line 295
at Autodesk.AutoCAD.Runtime.CommandClass.InvokeWorker(MethodInfo mi, Object commandObject, Boolean bLispFunction)
at Autodesk.AutoCAD.Runtime.CommandClass.InvokeWorkerWithExceptionFilter(MethodInfo mi, Object commandObject, Boolean bLispFunction)
at Autodesk.AutoCAD.Runtime.PerDocumentCommandClass.Invoke(MethodInfo mi, Boolean bLispFunction)
at Autodesk.AutoCAD.Runtime.CommandClass.CommandThunk.Invoke()


************** Loaded Assemblies **************
mscorlib
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
Acdbmgd
Assembly Version: 19.0.0.0
Win32 Version: 19.0.55.0.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/AcdbMgd.DLL
----------------------------------------
System
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Core
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
AdApplicationFrame
Assembly Version: 0.0.0.0
Win32 Version: 3.5.19.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/AdApplicationFrame.DLL
----------------------------------------
AdWindows
Assembly Version: 3.5.21.0
Win32 Version: 3.5.21.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/AdWindows.DLL
----------------------------------------
PresentationFramework
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.dll
----------------------------------------
WindowsBase
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsBase/v4.0_4.0.0.0__31bf3856ad364e35/WindowsBase.dll
----------------------------------------
PresentationCore
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/PresentationCore/v4.0_4.0.0.0__31bf3856ad364e35/PresentationCore.dll
----------------------------------------
System.Xaml
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xaml/v4.0_4.0.0.0__b77a5c561934e089/System.Xaml.dll
----------------------------------------
System.Xml
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
PresentationFramework.Aero
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework.Aero/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.Aero.dll
----------------------------------------
System.Drawing
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
accoremgd
Assembly Version: 19.0.0.0
Win32 Version: 19.0.55.0.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/accoremgd.DLL
----------------------------------------
Acmgd
Assembly Version: 19.0.0.0
Win32 Version: 19.0.55.0.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/Acmgd.DLL
----------------------------------------
System.Configuration
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
AcWindows
Assembly Version: 19.0.0.0
Win32 Version: 19.0.55.0.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/AcWindows.DLL
----------------------------------------
AcCui
Assembly Version: 19.0.0.0
Win32 Version: 19.0.55.0.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/AcCui.DLL
----------------------------------------
PresentationFramework-SystemXml
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemXml/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemXml.dll
----------------------------------------
WindowsFormsIntegration
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsFormsIntegration/v4.0_4.0.0.0__31bf3856ad364e35/WindowsFormsIntegration.dll
----------------------------------------
AcWindows.resources
Assembly Version: 19.0.0.0
Win32 Version: 19.0.55.0.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/en-US/AcWindows.resources.DLL
----------------------------------------
PresentationUI
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationUI/v4.0_4.0.0.0__31bf3856ad364e35/PresentationUI.dll
----------------------------------------
System.Xml.Linq
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml.Linq/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll
----------------------------------------
PresentationFramework-SystemXmlLinq
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemXmlLinq/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemXmlLinq.dll
----------------------------------------
AcFusion
Assembly Version: 1.0.4413.25327
Win32 Version: 0.2.0.230
CodeBase: file:///c:/program%20files/autodesk/applicationplugins/fusionplugin2013.bundle/contents/win32/acfusion.arx
----------------------------------------
AcFusionRes
Assembly Version: 0.2.0.230
Win32 Version: 0.2.0.230
CodeBase: file:///C:/Program%20Files/Autodesk/ApplicationPlugins/FusionPlugin2013.bundle/Contents/Win32/AcFusionRes.dll
----------------------------------------
ContextualTabSelectorRules
Assembly Version: 0.0.0.0
Win32 Version: 19.0.55.0.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/AcWindows.dll
----------------------------------------
System.Windows.Forms
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
ManagedMC3
Assembly Version: 6.4.0.0
Win32 Version: 6.4.0.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/ManagedMC3.DLL
----------------------------------------
PresentationFramework-SystemCore
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemCore/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemCore.dll
----------------------------------------
UIAutomationTypes
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/UIAutomationTypes/v4.0_4.0.0.0__31bf3856ad364e35/UIAutomationTypes.dll
----------------------------------------
AcLivePreviewContext
Assembly Version: 0.0.0.0
Win32 Version: 19.0.55.0.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/AcWindows.dll
----------------------------------------
AcLayer
Assembly Version: 19.0.0.0
Win32 Version: 19.0.55.0.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/AcLayer.DLL
----------------------------------------
AcLayer.resources
Assembly Version: 19.0.0.0
Win32 Version: 19.0.55.0.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/en-US/AcLayer.resources.DLL
----------------------------------------
PresentationFramework.Luna
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework.Luna/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.Luna.dll
----------------------------------------
AcMrUi
Assembly Version: 19.0.0.0
Win32 Version: 19.0.55.0.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/AcMrUI.DLL
----------------------------------------
AcMrUi.resources
Assembly Version: 19.0.0.0
Win32 Version: 19.0.55.0.0
CodeBase: file:///C:/Program%20Files/Autodesk/AutoCAD%202013/en-US/AcMrUi.resources.DLL
----------------------------------------
UIAutomationProvider
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/UIAutomationProvider/v4.0_4.0.0.0__31bf3856ad364e35/UIAutomationProvider.dll
----------------------------------------
BarBendingDet
Assembly Version: 1.0.0.0
Win32 Version: 1.0.0.0
CodeBase: file:///E:/Visual%20Studio%202012/Projects/autcad.NET/0000BarBendingDet/BarBendingDet/BarBendingDet/bin/Debug/BarBendingDet.dll
----------------------------------------
Microsoft.VisualBasic
Assembly Version: 10.0.0.0
Win32 Version: 11.0.50938.18408 built by: FX451RTMGREL
CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
----------------------------------------

************** JIT Debugging **************
Application does not support Windows Forms just-in-time (JIT)
debugging. Contact the application author for more
information.


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