Bonjour , je suis en train de crée un userform ,pour enregistrer des fiche technique , et pour pouvoir les recherche par la suite , mon problème et que lorsque je suis sur la feuille ou il y a mes donnée le bouton de recherche marche mais lorsque je change de feuille il ne marche plus , il doit s'agir d'un probleme zone ou rechercher . Cependant vue que je n'y comprend pas grand chose et que je débute avec des tuto youtube je ne sais pas comment faire.
Private Sub CommandButton3_Click()
If Not ComboBox1.Value = "" Then
Dim no_ligne As Integer
no_ligne = ComboBox1.ListIndex + 2
TextBox1.Value = Cells(no_ligne, 2).Value
TextBox2.Value = Cells(no_ligne, 3).Value
TextBox3.Value = Cells(no_ligne, 4).Value
TextBox4.Value = Cells(no_ligne, 5).Value
TextBox5.Value = Cells(no_ligne, 6).Value
TextBox6.Value = Cells(no_ligne, 7).Value
TextBox7.Value = Cells(no_ligne, 8).Value
TextBox8.Value = Cells(no_ligne, 9).Value
TextBox9.Value = Cells(no_ligne, 10).Value
TextBox10.Value = Cells(no_ligne, 11).Value
TextBox11.Value = Cells(no_ligne, 12).Value
TextBox12.Value = Cells(no_ligne, 13).Value
TextBox13.Value = Cells(no_ligne, 14).Value
TextBox14.Value = Cells(no_ligne, 15).Value
TextBox15.Value = Cells(no_ligne, 16).Value
TextBox16.Value = Cells(no_ligne, 17).Value
TextBox17.Value = Cells(no_ligne, 18).Value
TextBox18.Value = Cells(no_ligne, 19).Value
TextBox19.Value = Cells(no_ligne, 20).Value
TextBox20.Value = Cells(no_ligne, 21).Value
TextBox21.Value = Cells(no_ligne, 22).Value
TextBox22.Value = Cells(no_ligne, 23).Value
TextBox23.Value = Cells(no_ligne, 24).Value
TextBox24.Value = Cells(no_ligne, 25).Value
TextBox25.Value = Cells(no_ligne, 26).Value
TextBox26.Value = Cells(no_ligne, 27).Value
TextBox27.Value = Cells(no_ligne, 28).Value
Else
End If
End Sub