Notifications
Clear all

Full Screen

2 Posts
2 Usuários
0 Reactions
1,090 Visualizações
(@vonzuben)
Posts: 549
Honorable Member
Topic starter
 

Como abrir um arquivo excel em Full Screen sem alterar os outros ?

Todos os arquivos agora abre em Full Screen

Obrigado !

 
Postado : 28/10/2017 3:41 pm
Fernando Fernandes
(@fernandofernandes)
Posts: 43750
Illustrious Member
 

Bom dia!!

Usa a pesquisa do fórum!!

Private Sub Workbook_Open()

If Not (ThisWorkbook Is ActiveWorkbook) Then Exit Sub
  ActiveWindow.WindowState = xlMaximized
  Application.WindowState = xlMaximized
  Application.DisplayFullScreen = True
  Application.CommandBars("Full Screen").Enabled = True
End Sub

Att

Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel

 
Postado : 30/10/2017 5:04 am