Hello all, Here is some code I am using to populate a combo box with all the layers in a drawing: Dim entry As AcadLayer For Each entry In ThisDrawing.Layers cmbLayers.AddItem entry.Name Next Is there any way to sort this list alphabetically ? Thanks.