This is a workaround you can use until it can be determined what the issue is. This code will position the Userform2 so it is not on top of the listbox after it opens. As long as userform2 does not touch the listbox everything works fine.
The code runs on the form initialize event.
You may have to adjust the width setting on you r machine . it is currently set at +220
Code:
Private Sub UserForm_Initialize()
Me.StartUpPosition = 0
Me.Top = (Application.Height - Me.Height) / 2
Me.Left = (Application.Width - Me.Width + 220)
End Sub
Bookmarks