A voir également:
- (VBA ppt] controle inactif quand visible
- Réparer ppt en ligne gratuit - Télécharger - Suite bureautique
- Clé usb non visible - Guide
- Ppt viewer - Télécharger - Présentation
- Réparer fichier ppt endommagé en ligne gratuit - Télécharger - Récupération de données
- Controle parental pc - Guide
3 réponses
CapitainCo
Messages postés
126
Date d'inscription
mardi 24 juin 2008
Statut
Membre
Dernière intervention
5 novembre 2009
61
26 juin 2008 à 16:59
26 juin 2008 à 16:59
"si je lance le diaporama avec lulu1,2,3, et 4 invisibles, en cliquant sur lulu, je les rends bien visibles, mais par contre ces 4 boutons sont inactifs"
tu les as mis invisible ou enable ?? car c'est n'est pas la meme chose
tu les as mis invisible ou enable ?? car c'est n'est pas la meme chose
CapitainCo
Messages postés
126
Date d'inscription
mardi 24 juin 2008
Statut
Membre
Dernière intervention
5 novembre 2009
61
27 juin 2008 à 11:35
27 juin 2008 à 11:35
Private Sub CommandButton22_Click()
Set crediapo = ActivePresentation.Slides(1)
Set afdiapo = SlideShowWindows(1)
If CommandButton6.Visible = False Then
CommandButton6.Visible = True
CommandButton7.Visible = True
CommandButton8.Visible = True
CommandButton9.Visible = True
CommandButton22.Caption = "lulubis"
ElseIf CommandButton6.Visible = True Then
CommandButton6.Visible = False
CommandButton7.Visible = False
CommandButton8.Visible = False
CommandButton9.Visible = False
CommandButton22.Caption = "lulu"
End If
End Sub
ta variable coucou ce réinitialise a chaque clique, donc ca plombé ton code
Set crediapo = ActivePresentation.Slides(1)
Set afdiapo = SlideShowWindows(1)
If CommandButton6.Visible = False Then
CommandButton6.Visible = True
CommandButton7.Visible = True
CommandButton8.Visible = True
CommandButton9.Visible = True
CommandButton22.Caption = "lulubis"
ElseIf CommandButton6.Visible = True Then
CommandButton6.Visible = False
CommandButton7.Visible = False
CommandButton8.Visible = False
CommandButton9.Visible = False
CommandButton22.Caption = "lulu"
End If
End Sub
ta variable coucou ce réinitialise a chaque clique, donc ca plombé ton code
CapitainCo
Messages postés
126
Date d'inscription
mardi 24 juin 2008
Statut
Membre
Dernière intervention
5 novembre 2009
61
27 juin 2008 à 12:24
27 juin 2008 à 12:24
sinon je vois bien le probleme mais ca me prend la tete ce truc des boutons invisble qui sont aussi inactif. mais bon quand tu fera ton pps tu forceras la sortie sans sauvegarde et il y aura pas de probleme
27 juin 2008 à 07:30
ils sont invisibles, autrement dit je suis sorti du diapo precedemment avec les boutons invisibles (bouton principal s'appelle alors lulu).
et j'ai verifie avec des msgbox (msgbox luluX.enabled), dans cette configuration, quand je relance le diaporama avec les boutons invisibles, que je reclique sur mon bouton lulu pour les rendre visibles ou qu'ils restent invisibles, j'ai bien ces 4boutons en mode enabled=true.