Bonjour a tous, je n'arrive pas a fermer mon UserForm a l'aide du bouton qui a servi a l'ouvrir, est-ce possible?
Private Sub CommandButton4_Click() 'bouton Kpad
If State = False Then
State = True
UserForm4.Show
Else
State = False
Unload UserForm4
End If
End Sub