Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Search results for query: *

  1. kcimos

    AUTOCAD VBA - extacting attribute values

    I THINK I FOUND THE PART OF PROBLEM: there are ~20 layouts each with the title block, all of the attributes in question have a value (the block does not have a default value though, like most of the others in the block),anyway, there must be block reference "hiding" in the drawing w/o...
  2. kcimos

    AUTOCAD VBA - extacting attribute values

    i'm using the following code to get attribute data: varAttributes = BlkRefObj.GetAttributes then using i in a loop: tag=(varAttributes(i).TagString) value=(varAttributes(i).TextString) this works fine for most attributes, but there is a least 1 attribute in a title block that the .textstring...
  3. kcimos

    autocad PAGE SETUP

    is there away to work with page setups? i mean, is there a PageSetup object or PageSetups collection? i don't see anything like that in the object model, but maybe its undocumented or something. i'm trying to something that should be simple, one of the first things that needs to happen is the...
  4. kcimos

    autocad vba listbox

    i created a listbox on a form but i am not able to do anything with it - code such as NameForm.ListBox1.AddItem "8000" generates a "method or data member not found error" when i type "me." LISTBOX1 does NOT show up in the properties/methods drop down list. i'm not...
Back
Top