Bonjour à tous !
Pouvez vous m'aider ? D'avance grand merci.
Qu’elle serait la ligne de commande nécessaire, à placer dans mon ‘Thisworkbook’ pour que, quand j’arrive sur mon 1er onglet (Sommaire) et quelque soit la taille de l’écran sur lequel mon fichier est ouvert (19’’ , portable…), ça zoom au maxi sur ma zone de sélection ‘C1 :R48’ ?
Et OU placer cette ligne de code dans tout ça ? (Contenu de mon ‘Thisworkbook ci-dessous)
Mille mercis à vous pour votre aide !
Amicalement
Weider.
----------------------------------------------------------------------------------------------------------------
Option Explicit
' Pour ouvrir le fichier en plein écran, concerne que ce fichier !
***Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.ScreenUpdating = False
With ActiveWindow
.DisplayHeadings = True
.DisplayGridlines = True
.DisplayHorizontalScrollBar = True
.DisplayVerticalScrollBar = True
.DisplayWorkbookTabs = True
End With
Application.DisplayFullScreen = False
ActiveWorkbook.Save
Application.ScreenUpdating = True
' Pour ouvrir le fichier sur un onglet bien précis
Sheets("Sommaire").Activate
End Sub
Private Sub Workbook_Open()
Application.ScreenUpdating = False
With ActiveWindow
.DisplayHeadings = False
.DisplayGridlines = False
.DisplayHorizontalScrollBar = False
.DisplayVerticalScrollBar = False
.DisplayWorkbookTabs = False
End With
Application.DisplayFullScreen = True
Application.ScreenUpdating = True
UserForm3.Show ' Affiche l'USF3 à l'ouverture du fichier
End Sub
Pouvez vous m'aider ? D'avance grand merci.
Qu’elle serait la ligne de commande nécessaire, à placer dans mon ‘Thisworkbook’ pour que, quand j’arrive sur mon 1er onglet (Sommaire) et quelque soit la taille de l’écran sur lequel mon fichier est ouvert (19’’ , portable…), ça zoom au maxi sur ma zone de sélection ‘C1 :R48’ ?
Et OU placer cette ligne de code dans tout ça ? (Contenu de mon ‘Thisworkbook ci-dessous)
Mille mercis à vous pour votre aide !
Amicalement
Weider.
----------------------------------------------------------------------------------------------------------------
Option Explicit
' Pour ouvrir le fichier en plein écran, concerne que ce fichier !
***Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.ScreenUpdating = False
With ActiveWindow
.DisplayHeadings = True
.DisplayGridlines = True
.DisplayHorizontalScrollBar = True
.DisplayVerticalScrollBar = True
.DisplayWorkbookTabs = True
End With
Application.DisplayFullScreen = False
ActiveWorkbook.Save
Application.ScreenUpdating = True
' Pour ouvrir le fichier sur un onglet bien précis
Sheets("Sommaire").Activate
End Sub
Private Sub Workbook_Open()
Application.ScreenUpdating = False
With ActiveWindow
.DisplayHeadings = False
.DisplayGridlines = False
.DisplayHorizontalScrollBar = False
.DisplayVerticalScrollBar = False
.DisplayWorkbookTabs = False
End With
Application.DisplayFullScreen = True
Application.ScreenUpdating = True
UserForm3.Show ' Affiche l'USF3 à l'ouverture du fichier
End Sub