.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Autocad with C#
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi.
I'm a profession Autocad user and I get a help my friend who profession about C#.
I'm a begineer about AutoCad and programming. I succeed to commenation C# and autocad. (like DevTv "Hello World")
I need a C# codes for Autocad 2012 programming. I mean is that same codes Visual Basic for Application codes and C# codes? (like class)
Also I need a advice about this subject.
Thanks for helpings..
Re: Autocad with C#
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Have you downloaded the ObjectARX developer kit and looked at the samples? Also try the following links:
http://through-the-interface.typepad.com/
Re: Autocad with C#
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi.
Thanks for helping.
Yes, We download objectarx Documentation and Download Complete ObjectARX SDK.
We looked and studied about it. But I think our problem is that I and my friend work different area. I'm a designer. He is a programmer.
We made some codes that use Visual Basic for application(in Autocad Tool box) and it worked.But we need to more detail about it.
For example:
SolidSelection.Select acSelectionSetAll
This code is the same use C sharp. ?
If TumPar.Count <> 0 Then
With TumPar
For xp = 1 To .Count
.Remove (1)
Next xp
End With
End If
On Error Resume Next
ThisDrawing.SelectionSets("SS01").Delete
Set SolidSelection = ThisDrawing.SelectionSets.Add("SS01")
grpCode(0) = 0
dataVal(0) = "3DSOLID"
SolidSelection.Select acSelectionSetAll, , , grpCode, dataVal
N = SolidSelection.Count
MsgBox "countyourdrawing: " & N
Re: Autocad with C#
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Posted code is VBA-code. This link can help you to migrate to VB.NET:



