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
| For Each FsoFichier In FsoRepertoire.Files
j = 0
Open FsoFichier.Path For Input As #1 'ouvre le fichier
Do While Not EOF(1) 'Boucle sur chaque ligne du fichier
Line Input #1, strLigne
j = j + 1
If strLigne = "Pic numero" Then
str = Split(strLigne, Chr(9))
Worksheets("Feuil1").Cells(lig, 2).Value = str(1)
ElseIf strLigne = "x0 maximum" Then
str = Split(strLigne, Chr(9))
Worksheets("Feuil1").Cells(lig, 3).Value = str(1)
ElseIf strLigne = "H" Then
str = Split(strLigne, Chr(9))
Worksheets("Feuil1").Cells(lig, 4).Value = str(1)
ElseIf strLigne = "H" Then
str = Split(strLigne, Chr(9))
Worksheets("Feuil1").Cells(lig, 5).Value = str(1)
ElseIf strLigne = "1/2 largeur a mi-hauteur" Then
str = Split(strLigne, Chr(9))
Worksheets("Feuil1").Cells(lig, 6).Value = str(1)
ElseIf strLigne = "lambda (proportion gaussienne)" Then
str = Split(strLigne, Chr(9))
Worksheets("Feuil1").Cells(lig, 7).Value = str(1)
End If
lig = lig + 1
Loop
Close #1 |
Partager