bug excel sur les liste derroulante en vb ?

  • Initiateur de la discussion Initiateur de la discussion leold
  • Date de début Date de début

Boostez vos compétences Excel avec notre communauté !

Rejoignez Excel Downloads, le rendez-vous des passionnés où l'entraide fait la force. Apprenez, échangez, progressez – et tout ça gratuitement ! 👉 Inscrivez-vous maintenant !

leold

XLDnaute Nouveau
bonjour a tous
j'ai un gros probleme que je n'arrive pas a resoudre
suite a un poste sur ce forum :
https://www.excel-downloads.com/threads/fichier-multi-utilisateur-proteger.86697/

j'ai fait ce bout de code
Code:
Sub Debut_Reservation()
Dim Rep As String
Dim celx, cely As Integer
Dim Nom As String
Dim debut As Integer
Dim bit As Boolean
Dim ligne As Integer
  If Sheets("reservation").Range("z100") <> "" Then Exit Sub
  Rep = Application.InputBox("Veuillez entrer votre mot de passe", Title:="Réservation outillage", _
  Type:=2, Default:=Application.UserName)
  debut = 134
  bit = False
  
  
  While Sheets("data").Cells(debut + 1, 9).Value <> "" And bit = False
   debut = debut + 1
   If Rep = Sheets("data").Cells(debut, 9).Value Then bit = True
   
  Wend
  If bit = False Then
   MsgBox "Password incorrecte"
  Else:
   MsgBox "Password correcte"
   
   With Sheets("Reservation")
   .Unprotect Password:="toto"
   '.Activate
   
   Sheets("reservation").Range("z100") = Sheets("data").Cells(debut, 10).Value
   Nom = Sheets("reservation").Range("z100")
   celx = 6
   cely = 2
   While .Cells(celx, cely).Value <> ""
    While .Cells(celx, cely).Value <> ""
     For ligne = 1 To 2
      If (.Cells(celx + ligne, cely).Value = .Range("z100")) Or (.Cells(celx + ligne, cely).Value = "") Then
         .Cells(celx + ligne, cely).Locked = False
         .Cells(celx + ligne, cely).FormulaHidden = False
         With .Cells(celx + ligne, cely).Validation
          .Delete
          .Add Type:=xlValidateList, _
            AlertStyle:=xlValidAlertStop, _
            Operator:=xlBetween, _
            Formula1:=Nom
          
          .IgnoreBlank = True
          .InCellDropdown = True
          .ShowInput = True
          .ShowError = True
         End With
      End If
     Next
     cely = cely + 1
    Wend
    cely = 2
    celx = celx + 3
   Wend
   .Protect DrawingObjects:=True, Contents:=True, Scenarios:=True, _
                  UserInterfaceOnly:=True, Password:="toto"
   End With
  End If
 

End Sub
normalement ca devrai marcher
mais il y a un plantage ici
.Add Type:=xlValidateList, _
AlertStyle:=xlValidAlertStop, _
Operator:=xlBetween, _
Formula1:=Nom
un message d'erreur 1004

pour passer le bug il suffit:
de retourner sur le classeur excel
de revenir a VB
de relancer et tout passe bien

ce code est lancer sous excel 2000 (pack office)

si quelqu'un peut m'aider ce serrai top car la je nage un peut
 
Re : bug excel sur les liste derroulante en vb ?

j'ai enfin trouvé
c'est con mais il fallais bien contourner le bug
Code:
.Delete
           Sheets("reservation").Range("a1").Select
           .Add Type:=xlValidateList, _
             AlertStyle:=xlValidAlertStop, _
             Operator:=xlBetween, _
             Formula1:=Nom
 
- Navigue sans publicité
- Accède à Cléa, notre assistante IA experte Excel... et pas que...
- Profite de fonctionnalités exclusives
Ton soutien permet à Excel Downloads de rester 100% gratuit et de continuer à rassembler les passionnés d'Excel.
Je deviens Supporter XLD

Discussions similaires

  • Question Question
Microsoft 365 worksheet_change
Réponses
29
Affichages
252
  • Question Question
XL 2021 VBA excel
Réponses
4
Affichages
80
Réponses
7
Affichages
107
Réponses
4
Affichages
363
Réponses
2
Affichages
409
Retour