Worksheet button question
Application.Visible = False in the workbook open event will hide the
xl app including the worksheet with your buttons. The userform will
remain visible.
In the ThisWorkbook object:
Private Sub Workbook_Open()
Application.Visible = False
UserForm.Show
End Sub
|