ChrisOswald
Active Member
- Joined
- Jan 19, 2010
- Messages
- 454
It looks like I'm having a braindrain moment. So, I've got a form with a combobox on it that's being populated in the form's initialize event. What are the property settings for the box so that the user can only select the items listed?
code example: (not that the code has anything to do with the question)
Thanks,
Chris
code example: (not that the code has anything to do with the question)
Code:
Private Sub UserForm_Initialize()
With CboRequestType
.Clear
.AddItem "Sales Reported"
.AddItem "Not Provided"
.AddItem "No Sales"
.ListIndex = 0
End With
end sub
Thanks,
Chris