I have the below code in my workbook module and I'd like to make it modeless so I can work in the active spreadsheet while it is also active. I want it to also stay visible and active through out (i.e. as long as I'm in a particular spreadsheet) because I've put Command Buttons on the form to navigate between worksheets - of which there are 51.
I should mention the code I'm using positions the Form and hides the [x] Close button and Title bar.
Any help would be greatly appreciated.
Thanks in advance
Code being used:
Private Sub UserForm_Activate()
Me.StartUpPosition = 0
Me.Top = Application.Top + 170
Me.Left = Application.Left + Application.Width - Me.Width - 40
End Sub
Private Sub UserForm_Initialize()
HideTitleBar Me
End Sub
I should mention the code I'm using positions the Form and hides the [x] Close button and Title bar.
Any help would be greatly appreciated.
Thanks in advance
Code being used:
Private Sub UserForm_Activate()
Me.StartUpPosition = 0
Me.Top = Application.Top + 170
Me.Left = Application.Left + Application.Width - Me.Width - 40
End Sub
Private Sub UserForm_Initialize()
HideTitleBar Me
End Sub