[Excel_Userform] Make ListBox horizontal scrollbar visible ( set listbox horizontal scroll bar vi...

Опубликовано: 17 Апрель 2026
на канале: EXCEL AND VBA
2,028
11

--------------------------------------------------------------------------------
Please like/subscribe. It's a great help.
--------------------------------------------------------------------------------
If you have any questions, please email [email protected].

File Link: https://drive.google.com/open?id=1dTz...

'-----------------------------------------
Private Sub UserForm_Initialize()
'-----------------------------------------

With Me.ListBox1
.ColumnWidths = "110;100" ' width: 200
.RowSource = "T"
End With

End Sub

'---------------------------
Sub show_form()
'---------------------------

VBA.Load UserForm1
UserForm1.Show Modeless

End Sub

#Listbox horizontal scrollbar visible