Bonjour,
mon problème est le suivant. A l'ouverture d'un fichier Excel, je souhaite afficher un formulaire en plein écran. Après quelques essais infructueux, je me tourne vers vous.
Actuellement mon code est le suivant mais le formulaire "dépasse" de l'écran.
Merci d'avance pour votre aide.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9 hWnd = FindWindowA(vbNullString, Me.Caption) exLong = GetWindowLongA(hWnd, -16) If exLong And &H880000 Then SetWindowLongA hWnd, -16, exLong And &HFF77FFFF zFactor = 100 * CInt(Application.Width / Me.Width) If zFactor > 400 Then zFactor = 400 Me.Width = Application.Width Me.Height = Application.Height Me.Zoom = zFactor
Partager