Each time I pull down on this list, it adds more layouts to the list. I don't want to use an initialize form event, can I do something right in the code to make it only list the layouts and not add with each susequent pull-down? Private Sub cmbLayout_DropButtonClick() Dim acLayout As AcadLayout For Each acLayout In ThisDrawing.Layouts cmbLayout.AddItem acLayout.Name Next End Sub