KeepTrying
Active Member
- Joined
- Aug 19, 2012
- Messages
- 276
- Office Version
- 365
- 2010
- Platform
- Windows
Hi Guys,
I'd like to change the line spacing between items in a VBA listbox. Let's assume I display month names in a listbox control. Name of my listbox is "Lista". It's easy, I just add one line to "Private Sub UserForm_Initialize" for the userform:
But I want more spaces between month names in the listbox when it shows on the userform. How Can I do that?
Many thanks in advance for your help.
Kind Regards,
I'd like to change the line spacing between items in a VBA listbox. Let's assume I display month names in a listbox control. Name of my listbox is "Lista". It's easy, I just add one line to "Private Sub UserForm_Initialize" for the userform:
Code:
Lista.List = Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
But I want more spaces between month names in the listbox when it shows on the userform. How Can I do that?
Many thanks in advance for your help.
Kind Regards,
Last edited: