S
Sandi Vogel
I have a couple of templates that contain a combo box that is populated on
initialization like so:
Private Sub UserForm_Initialize()
With Me.cboBillingAtty
.AddItem "Click and type or select from dropdown"
.AddItem "Joe Attorney"
.AddItem "Tom Attorney" (etc.; includes 40 attorneys)
.ListIndex = 0
End With
I now realize that as attorneys come and go, I'm going to have to modify the
names in each of my templates -- what a drag. Is there a way to make all of
the templates pull attorney names from one central place? I have heard of
"calling public routines"; but also have a vague recall that it might be
dangerous if you don't know what you're doing (and I sure don't!). Thought
I'd check with the experts first.
Thanks for any help!
Sandi Vogel
initialization like so:
Private Sub UserForm_Initialize()
With Me.cboBillingAtty
.AddItem "Click and type or select from dropdown"
.AddItem "Joe Attorney"
.AddItem "Tom Attorney" (etc.; includes 40 attorneys)
.ListIndex = 0
End With
I now realize that as attorneys come and go, I'm going to have to modify the
names in each of my templates -- what a drag. Is there a way to make all of
the templates pull attorney names from one central place? I have heard of
"calling public routines"; but also have a vague recall that it might be
dangerous if you don't know what you're doing (and I sure don't!). Thought
I'd check with the experts first.
Thanks for any help!
Sandi Vogel