View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
p45cal[_50_] p45cal[_50_] is offline
external usenet poster
 
Posts: 107
Default Is it possible to open only form when an excel file opens...

One way, in the form's code module:
Private Sub UserForm_Initialize()
Application.Visible = False
End Sub

Private Sub UserForm_Terminate()
Application.Visible = True
End Sub


--
p45cal


"SupperDuck" wrote:

Hello,

I can make visible = false for every sheet in startup. But... I do not want
to see even the borders of menus etc. of the excel.. Only the form.

Or if can not, i want to see the less for excel menus...

Regards,