Hi everyone, I've been dealing with this one for a while now, hoping a more experienced vba user found a solution/workaround of some sort.
When using activex listbox (inserted on sheet, not userform), it happens that when another user opens the file the listbox starts behaving funny.
It shrinks/resizes font size, height and width. Also sometimes it shrinks everything including the scroll bar, and leaves the white background the same size.
I've tested and it happens to different users running different computers, resolutions and even Windows versions.
I've tried putting code on Workbook_Open to control font size, height and widht, as well as on the Listbox_Click event.
Code:
But it still won't do it.
Anyone faced this before??
Thanks!
When using activex listbox (inserted on sheet, not userform), it happens that when another user opens the file the listbox starts behaving funny.
It shrinks/resizes font size, height and width. Also sometimes it shrinks everything including the scroll bar, and leaves the white background the same size.
I've tested and it happens to different users running different computers, resolutions and even Windows versions.
I've tried putting code on Workbook_Open to control font size, height and widht, as well as on the Listbox_Click event.
Code:
Code:
With Sheet1
.A_Listbox.Font.Size = 11
.A_Listbox.Height = 170
.A_Listbox.Width = 150
End With
But it still won't do it.
Anyone faced this before??
Thanks!