Problème Find vba
Résolu/Fermé
A voir également:
- Problème Find vba
- Vba attendre 1 seconde ✓ - Forum VB / VBA
- Vba récupérer valeur cellule ✓ - Forum VB / VBA
- Mkdir vba ✓ - Forum VB / VBA
- Excel compter cellule couleur sans vba - Guide
- Ava find - Télécharger - Divers Utilitaires
2 réponses
Pardon modifie quelque truc,
NomLivreBox est la textbox ou l'utilisateur rentre le nom du livre a rechercher :
Private Sub Rechercher_Click()
NomLivreRechercherBox.Visible = True 'TextBox correspondant au résultat de la recherche'
NomLivreRechercherBox.Value = Range("A2:A999").Find(NomLivreBox.Value, "A2")
End Sub
NomLivreBox est la textbox ou l'utilisateur rentre le nom du livre a rechercher :
Private Sub Rechercher_Click()
NomLivreRechercherBox.Visible = True 'TextBox correspondant au résultat de la recherche'
NomLivreRechercherBox.Value = Range("A2:A999").Find(NomLivreBox.Value, "A2")
End Sub