PDA

View Full Version : Printing Style names


BCrouse
2005-11-09, 08:17 PM
Is there a way to print out the names of all your wall styles, doors styles and etc...? I would like to be able to print a print out to help manage the name and number of styles we are using?




Thank you,

Brad

H'Angus
2005-11-10, 12:09 PM
Is there a way to print out the names of all your wall styles, doors styles and etc...? I would like to be able to print a print out to help manage the name and number of styles we are using?




Thank you,

Brad



Assuming all your styles are saved in a single drawing (eg a template or something), using the design drop down menu and say selecting the wall styles, it gives you a list of all wall styles, you can then alt-printscreen to compile a list.

A bit cumbersome but if you have lots of styles its better than typing them all out.

Steve

arcadia_x27
2005-11-10, 12:26 PM
You would probably be able to do the same thing using the ADT Style Manager and it might be a little more organized

cgraham
2005-11-10, 12:44 PM
This sounds like a good management tool for the wishlist, and it could apply to all ADT components.

BCrouse
2005-11-10, 03:27 PM
This sounds like a good management tool for the wishlist, and it could apply to all ADT components.
I already added this to the ADT Wish list! So take a look that ADT Wish list forum to see it. Please add to it is I missed anything

richard.binning
2005-11-11, 05:04 AM
Perhaps the following will help:



Public Sub list_Wall_styles()
Dim AEC_Doc As AecArchBaseDocument
Dim o_WStyle As AecWallStyle
Dim msg
Set AEC_Doc = AecArchBaseApplication.ActiveDocument
For Each o_WStyle In AEC_Doc.WallStyles
msg = msg & vbCrLf & o_WStyle.Name
Next o_WStyle
MsgBox msg
End Sub