Hi!
My program opens with a userform for input and I have set the workbook visible equal to false. It works but on opening the worksheet briefly appears. Looks amateurish. Could someone please check my code and advise? I have tried putting 'Application.Visible = False' and 'FrmCompData.Show' first but without success.
Thanks in anticipation.
Bushopper
My code is:
Private Sub Workbook_Open()
Application.ScreenUpdating = False
Application.Visible = False
frmCompData.Show
End Sub
Bookmarks