What I have:
I have two points on a street pattern and have an extruded rectangle drawn between the
two points (Shortest path) disregarding the path .
What I want to do:
I want to follow the street path and create an extruded solid (3D) to represent the same thing
Is there a way to extrude...
Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.GetFile(dlgMain.FileName)
Set a = f.OpenAsTextStream(varFileNum)
Hey guys,
When I open a file as a textstream (Code above) and hit the (X) to close the form and
exit program before using it in...
Hey, I am Stumped!
I created a templates with drawing limits that I use with many of my drawings.
I have several VBA codes that I run ( From menus and or Buttons) on different
data to display on these templates. One macro is causing AutoCAD to crush every
time with the error:
Exception...
What is the max number of items that can be supported by the standard combobox?
I thought the max number of item that can be loaded in a combobox is 32736.
Am I wrong?
I am loading the list from a csv file that has more than 193243 items,
removing duplicates at the same time, it only reads up...
I have this code for my multiselect list box. If I select more than one item
the code goes through each of the items twice before it gets out.
If lstCategory.ListIndex = -1 Then Exit Sub
For intCounter = lstCategory.ListCount - 1 To 0 Step -1
If lstCategory.Selected(intCounter) =...
Does AutoCAD have a points library for symbols that I can use other than the ones available. I want to use things like stars, solid circles and squares etc. for different symbol types on a map to show different aspects.
i know how to remove duplicates from consecutive list in a combobox.
rent
rent
rent
count
count
Dim varI As Integer
Dim strTemp As String
Do While varI <= cmbCategory.ListCount
If varI = cmbCategory.ListCount Then
Exit Sub
End If
If strTemp = cmbCategory.List(varI) Then
cmbCategory.RemoveItem...
I have several text files that I have been using to draw in AutoCAD(Programmatically - VBA). They have several other attributes that I would like to include with the drawings from these files.
I have been reading up on using blocks to attach attributes, but this does not seem to be what I...
I have over 16000 object on the application and I want to select only the blue ones (200) and them meove them to a different layer. I tried the selection set, but could not get the blue ones selected and changed.
I know this can be done in properties where yuo can filter by color, but I want to...