Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: zimGirl
  • Content: Threads
  • Order by date
  1. zimGirl

    Extrude path into a 3D solid (VBA)

    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...
  2. zimGirl

    FileSystemObject: textfile contents erased

    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...
  3. zimGirl

    Exception Error

    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...
  4. zimGirl

    combobox listcount max

    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...
  5. zimGirl

    Multiselect Listbox

    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) =...
  6. zimGirl

    Point symbols

    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.
  7. zimGirl

    Remove non-consecutive duplicates from combobox

    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...
  8. zimGirl

    Adding Attributes data to drawings - VBA

    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...
  9. zimGirl

    Change some objects from one layer to onother - VBA

    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...

Part and Inventory Search