IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Macros et VBA Excel Discussion :

Recherche une solution sur VB Userform


Sujet :

Macros et VBA Excel

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre à l'essai
    Homme Profil pro
    paris
    Inscrit en
    Mai 2016
    Messages
    5
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 57
    Localisation : France, Val d'Oise (Île de France)

    Informations professionnelles :
    Activité : paris

    Informations forums :
    Inscription : Mai 2016
    Messages : 5
    Par défaut Recherche une solution sur VB Userform
    Bonjour,
    Etant novice en Visual Basic je rencontre un petit souci.
    Actuellement je crée un formulaire d'inventaire avec un USF, celui-ci fonctionne très bien, avec les ComboBox, TextBox, et les boutons Quitter Modifier et Nouveau.
    Par contre j'ai mis 7 boutons qui correspondent a mes 7 feuilles, mais lorsque je souhaite passer d'une feuille à une autre cela ne fonctionne pas.
    Je reste toujours sur la première feuille.
    Merci à vous.

    Je vous joints le code



    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    Option Explicit
    Dim Ws As Worksheet
     
    'Pour le bouton prêt
    Private Sub CommandButton10_Click()
    Sheets("Prêt").Select
     Dim Ctrl As Control
     
     For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
             If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton PC-M73
     
    Private Sub CommandButton11_Click()
    Sheets("PC-M73").Select
     Dim Ctrl As Control
     
     For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
             If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton Ecran
     
    Private Sub CommandButton5_Click()
    Sheets("Ecran").Activate
     Dim Ctrl As Control
     
     For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
    'Pour le bouton Vider
    Private Sub CommandButton12_Click()
        Dim Ctrl As Control
        For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton UC
     
    Private Sub CommandButton4_Click()
    Sheets("UC").Select
     
    Dim Ctrl As Control
        For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton Portable
    Private Sub CommandButton6_Click()
    Sheets("Portable").Select
     
    Dim Ctrl As Control
        For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton Imprimante
    Private Sub CommandButton7_Click()
    Sheets("Imprimante").Select
    Dim Ctrl As Control
     
     For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton Stock
    Private Sub CommandButton8_Click()
    Sheets("Stock").Select
    Dim Ctrl As Control
     
      For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton Réformé
    Private Sub CommandButton9_Click()
    Sheets("Reforme").Select
    Dim Ctrl As Control
     
     For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le formulaire
    Private Sub UserForm_Initialize()
        Dim J As Long
     
        ComboBox2.List() = Array("Paris", "Reims", "Autre")
        Set Ws = Sheets("UC")   'Correspond au nom de l'onglet dans le ficier Excel
        With Me.ComboBox1
            For J = 2 To Ws.Range("A" & Rows.Count).End(xlUp).Row
                .AddItem Ws.Range("A" & J)
     
            Next
        End With
     
    End Sub
     
     
     
    'Pour la feuille UC de la liste déroulante ref
    Private Sub ComboBox1_Change()
     
        Dim Ligne As Long
        Dim I As Integer
     
        If Me.ComboBox1.ListIndex = -1 Then Exit Sub
        Ligne = Me.ComboBox1.ListIndex + 2
        ComboBox2 = Ws.Cells(Ligne, "B")
        For I = 1 To 12
            Me.Controls("TextBox" & I) = Ws.Cells(Ligne, I + 2)
        Next I
    End Sub
     
     
     
    'Pour le bouton Nouveau
    Private Sub CommandButton1_Click()
        Dim L As Integer
        If MsgBox("Confirmez-vous l'insertion de ce nouvel utilisateur?", vbYesNo, "Demande de confirmation d'ajout") = vbYes Then
            L = Sheets("UC").Range("A" & Rows.Count).End(xlUp).Row + 1 'Pour placer le nouvel enregistrement la premire ligne de tableau non Vide
            Range("A" & L).Value = ComboBox1
            Range("B" & L).Value = ComboBox2
            Range("C" & L).Value = TextBox1
            Range("D" & L).Value = TextBox2
            Range("E" & L).Value = TextBox3
            Range("F" & L).Value = TextBox4
            Range("G" & L).Value = TextBox5
            Range("H" & L).Value = TextBox6
            Range("I" & L).Value = TextBox7
            Range("J" & L).Value = TextBox8
            Range("K" & L).Value = TextBox9
            Range("L" & L).Value = TextBox10
            Range("M" & L).Value = TextBox11
            Range("N" & L).Value = TextBox12
     
            Dim J As Long
            Dim I As Integer
            ComboBox1.Clear
            Set Ws = Sheets("UC") 'Correspond au nom de l'onglet de la feuille Excel
            With Me.ComboBox1
                    For J = 2 To Ws.Range("A" & Rows.Count).End(xlUp).Row
                .AddItem Ws.Range("A" & J)
            Next J
            End With
          Else
       End If
       Dim Ctrl As Control
        For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
     
     
    'Pour le bouton Modifier
    Private Sub CommandButton2_Click()
        Dim Ligne As Long
        Dim I As Integer
     
        If MsgBox("Confirmez-vous les modifications?", vbYesNo, "Demande de confirmation de modification") = vbYes Then
            If Me.ComboBox1.ListIndex = -1 Then Exit Sub
            Ligne = Me.ComboBox1.ListIndex + 2
            Ws.Cells(Ligne, "B") = ComboBox2
            For I = 1 To 12
     
                    Ws.Cells(Ligne, I + 2) = Me.Controls("TextBox" & I)
     
            Next I
        End If
     
    End Sub
     
     
    'Pour le bouton Quitter
    Private Sub CommandButton3_Click()
        Unload Me
    End Sub

  2. #2
    Expert confirmé
    Homme Profil pro
    aucune
    Inscrit en
    Avril 2016
    Messages
    7 563
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 84
    Localisation : France, Pyrénées Atlantiques (Aquitaine)

    Informations professionnelles :
    Activité : aucune

    Informations forums :
    Inscription : Avril 2016
    Messages : 7 563
    Par défaut
    Bonjour

    Tes boutons sont sur un Userform.
    Me est ton Userform et non la feuille que tu as sélectionnée.

  3. #3
    Membre à l'essai
    Homme Profil pro
    paris
    Inscrit en
    Mai 2016
    Messages
    5
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 57
    Localisation : France, Val d'Oise (Île de France)

    Informations professionnelles :
    Activité : paris

    Informations forums :
    Inscription : Mai 2016
    Messages : 5
    Par défaut
    oui les boutons sont dans USF
    le code complet est dans USF

    J'ai même essayé de faire un UsF par feuille

  4. #4
    Expert confirmé
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Mai 2013
    Messages
    3 609
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Canada

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : Alimentation

    Informations forums :
    Inscription : Mai 2013
    Messages : 3 609
    Par défaut
    Bonjour,

    Quand tu mets du code, sélectionne-le et utilise le bouton # en haut du message pour le formater.
    Ça facilite la lecture...

    Quelle est l'utilité de sélectionner la feuille dans laquelle tu veux écrire ?
    En principe, il suffit de mettre le nom de la feuille devant le Range pour que tout se fasse sans sélection.

  5. #5
    Membre à l'essai
    Homme Profil pro
    paris
    Inscrit en
    Mai 2016
    Messages
    5
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 57
    Localisation : France, Val d'Oise (Île de France)

    Informations professionnelles :
    Activité : paris

    Informations forums :
    Inscription : Mai 2016
    Messages : 5
    Par défaut
    Les Range correspondent aux cellules de ma premiere feuille, à savoir que les autres feuilles sont les même que la premiere, seulement le nom de l'onglet change.


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    Option Explicit
    Dim Ws As Worksheet
     
    'Pour le bouton prêt
    Private Sub CommandButton10_Click()
    Sheets("Prêt").Select
     Dim Ctrl As Control
        For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
             If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton PC-M73
    Private Sub CommandButton11_Click()
    Sheets("PC-M73").Select
     Dim Ctrl As Control
        For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
             If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton Ecran
    Private Sub CommandButton5_Click()
    Sheets("Ecran").Activate
     Dim Ctrl As Control
        For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
    'Pour le bouton Vider
    Private Sub CommandButton12_Click()
        Dim Ctrl As Control
        For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton UC
    Private Sub CommandButton4_Click()
    Sheets("UC").Select
    Dim Ctrl As Control
        For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton Portable
    Private Sub CommandButton6_Click()
    Sheets("Portable").Select
    Dim Ctrl As Control
        For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton Imprimante
    Private Sub CommandButton7_Click()
    Sheets("Imprimante").Select
    Dim Ctrl As Control
        For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton Stock
    Private Sub CommandButton8_Click()
    Sheets("Stock").Select
    Dim Ctrl As Control
        For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton Réformé
    Private Sub CommandButton9_Click()
    Sheets("Reforme").Select
    Dim Ctrl As Control
        For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
     
     
     
    'Pour le formulaire
    Private Sub UserForm_Initialize()
        Dim J As Long
     
        ComboBox2.List() = Array("Paris", "Reims", "Autre")
        Set Ws = Sheets("UC")   'Correspond au nom de l'onglet dans le ficier Excel
        With Me.ComboBox1
            For J = 2 To Ws.Range("A" & Rows.Count).End(xlUp).Row
                .AddItem Ws.Range("A" & J)
     
            Next
        End With
     
    End Sub
     
     
    'Pour la feuille UC de la liste droulante Ref
    Private Sub ComboBox1_Change()
     
        Dim Ligne As Long
        Dim I As Integer
     
        If Me.ComboBox1.ListIndex = -1 Then Exit Sub
        Ligne = Me.ComboBox1.ListIndex + 2
        ComboBox2 = Ws.Cells(Ligne, "B")
        For I = 1 To 12
            Me.Controls("TextBox" & I) = Ws.Cells(Ligne, I + 2)
        Next I
    End Sub
     
    'Pour le bouton Nouveau
    Private Sub CommandButton1_Click()
        Dim L As Integer
        If MsgBox("Confirmez-vous l'insertion de ce nouvel utilisateur?", vbYesNo, "Demande de confirmation d'ajout") = vbYes Then
            L = Sheets("UC").Range("A" & Rows.Count).End(xlUp).Row + 1 'Pour placer le nouvel enregistrement la premire ligne de tableau non Vide
            Range("A" & L).Value = ComboBox1
            Range("B" & L).Value = ComboBox2
            Range("C" & L).Value = TextBox1
            Range("D" & L).Value = TextBox2
            Range("E" & L).Value = TextBox3
            Range("F" & L).Value = TextBox4
            Range("G" & L).Value = TextBox5
            Range("H" & L).Value = TextBox6
            Range("I" & L).Value = TextBox7
            Range("J" & L).Value = TextBox8
            Range("K" & L).Value = TextBox9
            Range("L" & L).Value = TextBox10
            Range("M" & L).Value = TextBox11
            Range("N" & L).Value = TextBox12
     
            Dim J As Long
            Dim I As Integer
            ComboBox1.Clear
            Set Ws = Sheets("UC") 'Correspond au nom de l'onglet de la feuille Excel
            With Me.ComboBox1
                    For J = 2 To Ws.Range("A" & Rows.Count).End(xlUp).Row
                .AddItem Ws.Range("A" & J)
            Next J
            End With
          Else
       End If
       Dim Ctrl As Control
        For Each Ctrl In Me.Controls
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""
            If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""
        Next Ctrl
    End Sub
     
     
    'Pour le bouton Modifier
    Private Sub CommandButton2_Click()
        Dim Ligne As Long
        Dim I As Integer
     
        If MsgBox("Confirmez-vous les modifications?", vbYesNo, "Demande de confirmation de modification") = vbYes Then
            If Me.ComboBox1.ListIndex = -1 Then Exit Sub
            Ligne = Me.ComboBox1.ListIndex + 2
            Ws.Cells(Ligne, "B") = ComboBox2
            For I = 1 To 12
     
                    Ws.Cells(Ligne, I + 2) = Me.Controls("TextBox" & I)
     
            Next I
        End If
     
    End Sub
     
    'Pour le bouton Quitter
    Private Sub CommandButton3_Click()
        Unload Me
    End Sub

  6. #6
    Expert confirmé
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Mai 2013
    Messages
    3 609
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Canada

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : Alimentation

    Informations forums :
    Inscription : Mai 2013
    Messages : 3 609
    Par défaut
    Comme tes Sub semblent toutes pareilles, voyons celle-ci

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    Private Sub CommandButton10_Click()
    Sheets("Prêt").Select  'ici tu sélectionne la feuille, mais on ne sait pas pourquoi
     Dim Ctrl As Control
        For Each Ctrl In Me.Controls   'pour tous les contrôles dans ton Userform
            If TypeName(Ctrl) = "TextBox" Then Ctrl.Text = ""  'tu vides les textbox du Userform
             If TypeName(Ctrl) = "ComboBox" Then Ctrl.Text = ""  'tu effaces le texte des combobox du Userform
        Next Ctrl
    End Sub
    Je ne pense pas que ce soit ce que tu veux faire...
    Alors qu'est-ce que tu essaies de faire au juste ?

  7. #7
    Membre à l'essai
    Homme Profil pro
    paris
    Inscrit en
    Mai 2016
    Messages
    5
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 57
    Localisation : France, Val d'Oise (Île de France)

    Informations professionnelles :
    Activité : paris

    Informations forums :
    Inscription : Mai 2016
    Messages : 5
    Par défaut
    Voici une capture cela devrais être plus parlant .Nom : Capture2.PNG
Affichages : 204
Taille : 34,4 Ko

  8. #8
    Inactif  

    Homme Profil pro
    Développeur .NET
    Inscrit en
    Janvier 2012
    Messages
    4 903
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 68
    Localisation : Canada

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2012
    Messages : 4 903
    Billets dans le blog
    36
    Par défaut
    Bonjour,

    Citation Envoyé par johntime Voir le message
    Bonjour,
    Par contre j'ai mis 7 boutons qui correspondent a mes 7 feuilles, mais lorsque je souhaite passer d'une feuille à une autre cela ne fonctionne pas.
    Pour paraphraser m@rina, tu veux réinventer l'eau chaude. Un simple clic sur le nom de la feuille en bas de la fenêtre d'Excel fait la job.

    Et puis, tu peux très facilement agir sur une feuille sans la sélectionner, ou l'activer.

  9. #9
    Expert confirmé
    Homme Profil pro
    aucune
    Inscrit en
    Avril 2016
    Messages
    7 563
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 84
    Localisation : France, Pyrénées Atlantiques (Aquitaine)

    Informations professionnelles :
    Activité : aucune

    Informations forums :
    Inscription : Avril 2016
    Messages : 7 563
    Par défaut
    Bonjour clementmarcotte

    Sauf s'il (ou un autre) est allé tripoter les options Excel pour les définir manuellement de la même manière qu'elles le seraient par ceci :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    ActiveWindow.DisplayWorkbookTabs = False
    Amitiés

  10. #10
    Inactif  

    Homme Profil pro
    Développeur .NET
    Inscrit en
    Janvier 2012
    Messages
    4 903
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 68
    Localisation : Canada

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2012
    Messages : 4 903
    Billets dans le blog
    36
    Par défaut
    Bonjour,

    Je ne la connaissais pas, celle-là. Merci pour l'info.

Discussions similaires

  1. Macro "Recherche une Valeur" dans un Userform
    Par Bastien06 dans le forum Macros et VBA Excel
    Réponses: 3
    Dernier message: 15/09/2009, 14h43
  2. Rechercher une chaine sur une partie du champ
    Par docjo dans le forum VBA Access
    Réponses: 6
    Dernier message: 12/08/2009, 17h04
  3. [XL-2003] faire apparaitre une image sur un userform par rapport a une textbox
    Par revemane dans le forum Macros et VBA Excel
    Réponses: 2
    Dernier message: 06/06/2009, 10h21
  4. recherche une solution
    Par kaddourinfo dans le forum Algorithmes et structures de données
    Réponses: 2
    Dernier message: 30/01/2008, 17h04
  5. [Documentation]Recherche une doc sur B.O
    Par Sunchaser dans le forum Débuter
    Réponses: 2
    Dernier message: 09/04/2007, 22h14

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo