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
|
Option Explicit
Private Sub BoutonRazCouleurs_Click()
ActiveSheet.UsedRange.Interior.ColorIndex = xlNone
End Sub
Private Sub CommandButton1_Click()
End Sub
Private Sub CommandButton3_Click()
Dim Chaine As String
Dim Fichier As String
On Error GoTo Erreur
Fichier = "q:\commun\ListeChangements.txt"
If ActiveCell.Row < 3 Then Exit Sub
With ActiveCell
If Not (.Comment Is Nothing) Then
Chaine = Cells(ActiveCell.Row, 1) & "," & Cells(2, ActiveCell.Column) & "," & .Comment.Text
Else
Chaine = Cells(ActiveCell.Row, 1) & "," & Cells(2, ActiveCell.Column)
End If
.Interior.Color = RGB(255, 255, 0)
End With
AjouterUneLigneDansFichierTexte Fichier, Chaine
' MsgBox "Les cellules ont été sauvegardées dans " & Fichier
Exit Sub
Erreur:
MsgBox "Le fichier de sortie est inaccessible"
End Sub |
Partager