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

Excel Discussion :

Remplacer un bouton d'execution


Sujet :

Excel

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre actif
    Homme Profil pro
    Enseignant
    Inscrit en
    Septembre 2017
    Messages
    55
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 67
    Localisation : Algérie

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Septembre 2017
    Messages : 55
    Par défaut Remplacer un bouton d'execution
    Bonjour,
    comment dois-je faire pour supprimer le bouton d'exécution de macro pour le remplacer par du code VBA, c'est-à-dire que dès que je change le contenu d'une cellule (K1 par exemple), la macro se déclenchera automatiquement.
    Voici mon code:
    [CODE]Sub Combine()

    Dim DerniereLigne As Long
    Dim J As Integer
    Dim MesOnglets As Variant
    Dim ShSynthese As Worksheet
    Dim MaPlage As Range

    On Error Resume Next

    MesOnglets = Array("Classe 1", "Classe 2", "Classe 3", "Classe 4")
    Set ShSynthese = Worksheets.Add(before:=Sheets(1))
    With ShSynthese
    For J = LBound(MesOnglets) To UBound(MesOnglets)
    DerniereLigne = .UsedRange.SpecialCells(xlCellTypeLastCell).Row + 0
    With Sheets(MesOnglets(J)).UsedRange
    Set MaPlage = .Offset(1, 0).Resize(.Rows.Count - 1)
    MaPlage.Copy Destination:=ShSynthese.Cells(DerniereLigne + 1, 1)
    Set MaPlage = Nothing
    End With
    Next J
    End With
    Set ShSynthese = Nothing
    Sheets(1).Name = "Combined"
    ActiveSheet.Buttons.Add(658.5, 53.25, 61.5, 21.75).Select
    Selection.OnAction = "Macro6"

    End Sub

    Sub Macro4()
    '
    ' Macro4 Macro
    '

    '
    Range("A2200").Select
    ActiveWorkbook.Worksheets("Combined").Sort.SortFields.Clear
    ActiveWorkbook.Worksheets("Combined").Sort.SortFields.Add Key:=Range("C2:C200") _
    , SortOn:=xlSortOnValues, Order:=xlDescending, DataOption:=xlSortNormal
    With ActiveWorkbook.Worksheets("Combined").Sort
    .SetRange Range("A2200")
    .Header = xlGuess
    .MatchCase = False
    .Orientation = xlTopToBottom
    .SortMethod = xlPinYin
    .Apply
    End With


    End Sub

    [/CODE

    Sub Macro6()
    '
    ' Macro6 Macro
    '

    '
    Range("A1").Select
    ActiveCell.FormulaR1C1 = "Noms"
    Range("B1").Select
    ActiveCell.FormulaR1C1 = "Classe"
    Range("C1").Select
    ActiveCell.FormulaR1C1 = "Moyenne"
    Columns("B").Select
    With Selection
    .HorizontalAlignment = xlCenter
    .VerticalAlignment = xlBottom
    .WrapText = False
    .Orientation = 0
    .AddIndent = False
    .IndentLevel = 0
    .ShrinkToFit = False
    .ReadingOrder = xlContext
    .MergeCells = False
    End With
    With Selection
    .HorizontalAlignment = xlCenter
    .VerticalAlignment = xlCenter
    .WrapText = False
    .Orientation = 0
    .AddIndent = False
    .IndentLevel = 0
    .ShrinkToFit = False
    .ReadingOrder = xlContext
    .MergeCells = False
    End With
    Range("D1").Select
    ActiveCell.FormulaR1C1 = "Rang"
    Range("D2").Select
    ActiveCell.FormulaR1C1 = "=RANK(RC[-1],R2C3:R36C3,0)"
    Range("D2").Select
    Selection.AutoFill Destination:=Range("D236"), Type:=xlFillDefault
    Range("D236").Select
    ActiveWindow.SmallScroll Down:=-27
    Range("A137").Select
    Selection.Borders(xlDiagonalDown).LineStyle = xlNone
    Selection.Borders(xlDiagonalUp).LineStyle = xlNone
    With Selection.Borders(xlEdgeLeft)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeTop)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeBottom)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeRight)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlInsideVertical)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlInsideHorizontal)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    Range("B2").Select
    ActiveWindow.SmallScroll Down:=-15
    Range("A137").Select
    Selection.Borders(xlDiagonalDown).LineStyle = xlNone
    Selection.Borders(xlDiagonalUp).LineStyle = xlNone
    With Selection.Borders(xlEdgeLeft)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlMedium
    End With
    With Selection.Borders(xlEdgeTop)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlMedium
    End With
    With Selection.Borders(xlEdgeBottom)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlMedium
    End With
    With Selection.Borders(xlEdgeRight)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlMedium
    End With
    With Selection.Borders(xlInsideVertical)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlInsideHorizontal)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    Range("A1").Select

    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 : 83
    Localisation : France, Pyrénées Atlantiques (Aquitaine)

    Informations professionnelles :
    Activité : aucune

    Informations forums :
    Inscription : Avril 2016
    Messages : 7 563
    Par défaut
    Bonjour
    Je n'ai pas lu ton code (non indenté entre balises code) et me suis arrêté à ceci :
    c'est-à-dire que dès que je change le contenu d'une cellule (K1 par exemple), la macro se déclenchera automatiquement.
    utilise alors la procédure évènementielle Worksheet_Change pour appeler ta macro si changement. En te rappelant que l'objet Target est la cellule concernée par cet évènement.

  3. #3
    Membre actif
    Homme Profil pro
    Enseignant
    Inscrit en
    Septembre 2017
    Messages
    55
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 67
    Localisation : Algérie

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Septembre 2017
    Messages : 55
    Par défaut
    Dois-je écrire ceci?
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Application.Intersect(Target, Range("K1")) Is Nothing Then
    Call Combine
    Calle Macro4
    Call Macro6

    Voici mon code:
    Sub Combine()

    Dim DerniereLigne As Long
    Dim J As Integer
    Dim MesOnglets As Variant
    Dim ShSynthese As Worksheet
    Dim MaPlage As Range

    On Error Resume Next

    MesOnglets = Array("Classe 1", "Classe 2", "Classe 3", "Classe 4")
    Set ShSynthese = Worksheets.Add(before:=Sheets(1))
    With ShSynthese
    For J = LBound(MesOnglets) To UBound(MesOnglets)
    DerniereLigne = .UsedRange.SpecialCells(xlCellTypeLastCell).Row + 0
    With Sheets(MesOnglets(J)).UsedRange
    Set MaPlage = .Offset(1, 0).Resize(.Rows.Count - 1)
    MaPlage.Copy Destination:=ShSynthese.Cells(DerniereLigne + 1, 1)
    Set MaPlage = Nothing
    End With
    Next J
    End With
    Set ShSynthese = Nothing
    Sheets(1).Name = "Combined"
    ActiveSheet.Buttons.Add(658.5, 53.25, 61.5, 21.75).Select
    Selection.OnAction = "Macro6"

    End Sub

    Sub Macro4()
    '
    ' Macro4 Macro
    '

    '
    Range("A2200").Select
    ActiveWorkbook.Worksheets("Combined").Sort.SortFields.Clear
    ActiveWorkbook.Worksheets("Combined").Sort.SortFields.Add Key:=Range("C2:C200") _
    , SortOn:=xlSortOnValues, Order:=xlDescending, DataOption:=xlSortNormal
    With ActiveWorkbook.Worksheets("Combined").Sort
    .SetRange Range("A2200")
    .Header = xlGuess
    .MatchCase = False
    .Orientation = xlTopToBottom
    .SortMethod = xlPinYin
    .Apply
    End With


    End Sub



    Sub Macro6()
    '
    ' Macro6 Macro
    '

    '
    Range("A1").Select
    ActiveCell.FormulaR1C1 = "Noms"
    Range("B1").Select
    ActiveCell.FormulaR1C1 = "Classe"
    Range("C1").Select
    ActiveCell.FormulaR1C1 = "Moyenne"
    Columns("B").Select
    With Selection
    .HorizontalAlignment = xlCenter
    .VerticalAlignment = xlBottom
    .WrapText = False
    .Orientation = 0
    .AddIndent = False
    .IndentLevel = 0
    .ShrinkToFit = False
    .ReadingOrder = xlContext
    .MergeCells = False
    End With
    With Selection
    .HorizontalAlignment = xlCenter
    .VerticalAlignment = xlCenter
    .WrapText = False
    .Orientation = 0
    .AddIndent = False
    .IndentLevel = 0
    .ShrinkToFit = False
    .ReadingOrder = xlContext
    .MergeCells = False
    End With
    Range("D1").Select
    ActiveCell.FormulaR1C1 = "Rang"
    Range("D2").Select
    ActiveCell.FormulaR1C1 = "=RANK(RC[-1],R2C3:R36C3,0)"
    Range("D2").Select
    Selection.AutoFill Destination:=Range("D236"), Type:=xlFillDefault
    Range("D236").Select
    ActiveWindow.SmallScroll Down:=-27
    Range("A137").Select
    Selection.Borders(xlDiagonalDown).LineStyle = xlNone
    Selection.Borders(xlDiagonalUp).LineStyle = xlNone
    With Selection.Borders(xlEdgeLeft)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeTop)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeBottom)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeRight)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlInsideVertical)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlInsideHorizontal)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    Range("B2").Select
    ActiveWindow.SmallScroll Down:=-15
    Range("A137").Select
    Selection.Borders(xlDiagonalDown).LineStyle = xlNone
    Selection.Borders(xlDiagonalUp).LineStyle = xlNone
    With Selection.Borders(xlEdgeLeft)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlMedium
    End With
    With Selection.Borders(xlEdgeTop)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlMedium
    End With
    With Selection.Borders(xlEdgeBottom)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlMedium
    End With
    With Selection.Borders(xlEdgeRight)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlMedium
    End With
    With Selection.Borders(xlInsideVertical)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlInsideHorizontal)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    Range("A1").Select

    End Sub

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

    Informations professionnelles :
    Activité : aucune

    Informations forums :
    Inscription : Avril 2016
    Messages : 7 563
    Par défaut
    Je ne lirai pas ton code (déjà dit) tant que non présenté indenté et entre balises code !
    Présente-le donc ainsi , si tu veux mon aide. Tel que présenté, ton code me donne le tournis et est cause de torticolis (et mon âge est très avancé) .

  5. #5
    Membre actif
    Homme Profil pro
    Enseignant
    Inscrit en
    Septembre 2017
    Messages
    55
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 67
    Localisation : Algérie

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Septembre 2017
    Messages : 55
    Par défaut
    Dois-je écrire ceci ?
    [Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Application.Intersect(Target, Range("K1")) Is Nothing Then
    Call Combine
    Calle Macro4
    Call Macro6CODE][/CODE]

    Voici mon code Combine :
    [CODESub Combine()

    Dim DerniereLigne As Long
    Dim J As Integer
    Dim MesOnglets As Variant
    Dim ShSynthese As Worksheet
    Dim MaPlage As Range

    On Error Resume Next

    MesOnglets = Array("Classe 1", "Classe 2", "Classe 3", "Classe 4")
    Set ShSynthese = Worksheets.Add(before:=Sheets(1))
    With ShSynthese
    For J = LBound(MesOnglets) To UBound(MesOnglets)
    DerniereLigne = .UsedRange.SpecialCells(xlCellTypeLastCell).Row + 0
    With Sheets(MesOnglets(J)).UsedRange
    Set MaPlage = .Offset(1, 0).Resize(.Rows.Count - 1)
    MaPlage.Copy Destination:=ShSynthese.Cells(DerniereLigne + 1, 1)
    Set MaPlage = Nothing
    End With
    Next J
    End With
    Set ShSynthese = Nothing
    Sheets(1).Name = "Combined"
    ActiveSheet.Buttons.Add(658.5, 53.25, 61.5, 21.75).Select
    Selection.OnAction = "Macro6"

    End Sub][/CODE]

    Voici mon code Macro4
    [CODESub Macro4()
    '
    ' Macro4 Macro
    '

    '
    Range("A2200").Select
    ActiveWorkbook.Worksheets("Combined").Sort.SortFields.Clear
    ActiveWorkbook.Worksheets("Combined").Sort.SortFields.Add Key:=Range("C2:C200") _
    , SortOn:=xlSortOnValues, Order:=xlDescending, DataOption:=xlSortNormal
    With ActiveWorkbook.Worksheets("Combined").Sort
    .SetRange Range("A2200")
    .Header = xlGuess
    .MatchCase = False
    .Orientation = xlTopToBottom
    .SortMethod = xlPinYin
    .Apply
    End With

    End Sub][/CODE]

    et voici mon code Macro6 :
    [CODESub Macro6()
    '
    ' Macro6 Macro
    '

    '
    Range("A1").Select
    ActiveCell.FormulaR1C1 = "Noms"
    Range("B1").Select
    ActiveCell.FormulaR1C1 = "Classe"
    Range("C1").Select
    ActiveCell.FormulaR1C1 = "Moyenne"
    Columns("B").Select
    With Selection
    .HorizontalAlignment = xlCenter
    .VerticalAlignment = xlBottom
    .WrapText = False
    .Orientation = 0
    .AddIndent = False
    .IndentLevel = 0
    .ShrinkToFit = False
    .ReadingOrder = xlContext
    .MergeCells = False
    End With
    With Selection
    .HorizontalAlignment = xlCenter
    .VerticalAlignment = xlCenter
    .WrapText = False
    .Orientation = 0
    .AddIndent = False
    .IndentLevel = 0
    .ShrinkToFit = False
    .ReadingOrder = xlContext
    .MergeCells = False
    End With
    Range("D1").Select
    ActiveCell.FormulaR1C1 = "Rang"
    Range("D2").Select
    ActiveCell.FormulaR1C1 = "=RANK(RC[-1],R2C3:R36C3,0)"
    Range("D2").Select
    Selection.AutoFill Destination:=Range("D236"), Type:=xlFillDefault
    Range("D236").Select
    ActiveWindow.SmallScroll Down:=-27
    Range("A137").Select
    Selection.Borders(xlDiagonalDown).LineStyle = xlNone
    Selection.Borders(xlDiagonalUp).LineStyle = xlNone
    With Selection.Borders(xlEdgeLeft)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeTop)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeBottom)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeRight)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlInsideVertical)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlInsideHorizontal)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    Range("B2").Select
    ActiveWindow.SmallScroll Down:=-15
    Range("A137").Select
    Selection.Borders(xlDiagonalDown).LineStyle = xlNone
    Selection.Borders(xlDiagonalUp).LineStyle = xlNone
    With Selection.Borders(xlEdgeLeft)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlMedium
    End With
    With Selection.Borders(xlEdgeTop)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlMedium
    End With
    With Selection.Borders(xlEdgeBottom)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlMedium
    End With
    With Selection.Borders(xlEdgeRight)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlMedium
    End With
    With Selection.Borders(xlInsideVertical)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    With Selection.Borders(xlInsideHorizontal)
    .LineStyle = xlContinuous
    .ColorIndex = 0
    .TintAndShade = 0
    .Weight = xlThin
    End With
    Range("A1").Select

    End Sub][/CODE]

    Merci beaucoup

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

    Informations professionnelles :
    Activité : aucune

    Informations forums :
    Inscription : Avril 2016
    Messages : 7 563
    Par défaut
    Je ne lirai pas ton code (déjà dit) tant que non présenté indenté et entre balises code !

    Voilà comment se présente un code entre balises code :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    patati
      patata
        repatati
      patata
    patati
    etc...
    te semble-t-il vraiment que tel est l'aspect du tien ?

  7. #7
    Membre expérimenté
    Avatar de MolikDLuffy
    Homme Profil pro
    Contrôleur de gestion
    Inscrit en
    Mars 2017
    Messages
    158
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 36
    Localisation : France, Val d'Oise (Île de France)

    Informations professionnelles :
    Activité : Contrôleur de gestion
    Secteur : Finance

    Informations forums :
    Inscription : Mars 2017
    Messages : 158
    Billets dans le blog
    1
    Par défaut
    Monsieur Unparia,

    Lorsque vous écrivez un message, vous avez accès à plusieurs balises qui permettent avec leur utilisation que les lecteurs apprécient mieux vos messages.

    Pour la partie Balise Code, il suffit de cliquer sur la balise suivante :

    Nom : balise code.jpg
Affichages : 123
Taille : 19,7 Ko

    [ CODE]
    IL FAUT ECRIRE ENTRE
    [/ CODE]

  8. #8
    Expert éminent Avatar de Menhir
    Homme Profil pro
    Ingénieur
    Inscrit en
    Juin 2007
    Messages
    16 037
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Finistère (Bretagne)

    Informations professionnelles :
    Activité : Ingénieur
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2007
    Messages : 16 037
    Par défaut
    Je n'ai pas lu ton code, mais le plus simple est de l'appeler avec un Call dans une macro évènementielle Worksheet_Change.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    Private Sub Worksheet_Change(ByVal Target As Range)
        Call Combine()
    End Sub
    A adapter à ton cas.

Discussions similaires

  1. Remplacer un bouton parcourir avec une image
    Par karibouxe dans le forum Général JavaScript
    Réponses: 3
    Dernier message: 06/06/2006, 14h06
  2. [PHP-JS] bouton qui execute mal
    Par temperature dans le forum Langage
    Réponses: 14
    Dernier message: 04/05/2006, 09h29
  3. Remplacer des boutons par des menus déroulants?
    Par drthodt dans le forum Access
    Réponses: 3
    Dernier message: 20/09/2005, 17h37
  4. [Struts] Remplacer le bouton submit typique par une image
    Par olivangel dans le forum Struts 1
    Réponses: 5
    Dernier message: 04/08/2005, 12h29
  5. [C#] Remplacer les boutons d'un DataGrid par une image
    Par PascalL dans le forum Windows Forms
    Réponses: 17
    Dernier message: 04/04/2005, 16h07

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