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 :

Bloqué pour la conception de mon code


Sujet :

Macros et VBA Excel

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre averti
    Homme Profil pro
    Ingénieur aviation civile
    Inscrit en
    Novembre 2012
    Messages
    52
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Ingénieur aviation civile
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Novembre 2012
    Messages : 52
    Par défaut Bloqué pour la conception de mon code
    Bonsoir à tous,

    je bloque sur l'avancement de mon code. Je vous explique l'idée générale.
    Il s'agit d'un appel de candidats à un examen. Ce que je veux est :
    - confronter la liste des candidats à une liste d'échecs
    - si le candidat a déjà été en échec alors il faut copier les épreuves qu'il a déjà passé dans la feuille d'appel à partir des données figurant dans la liste d'échecs.

    J'espère avoir été clair. Merci d'avance. Xav

  2. #2
    Membre éclairé
    Profil pro
    Inscrit en
    Février 2009
    Messages
    334
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2009
    Messages : 334
    Par défaut
    Bonjour xavion,
    Ce serait beaucoup plus clair si tu nous montre ce que tu as déjà fait.

  3. #3
    Membre averti
    Homme Profil pro
    Ingénieur aviation civile
    Inscrit en
    Novembre 2012
    Messages
    52
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Ingénieur aviation civile
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Novembre 2012
    Messages : 52
    Par défaut
    Citation Envoyé par vieuxmonsieur Voir le message
    Bonjour xavion,
    Ce serait beaucoup plus clair si tu nous montre ce que tu as déjà fait.
    Coucou vieux monsieur,

    je te mets en pièce jointe le code. Il a des longueurs, je le sais mais j'ai la flemme de l'optimiser mais surtout j'aimerais bien terminer la gestion des échecs avant de le faire...

    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
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
    952
    953
    954
    955
    956
    957
    958
    959
    960
    961
    962
    963
    964
    965
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
    980
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    992
    993
    994
    995
    996
    997
    998
    999
    1000
    1001
    Sub ListingCandidats()
     
     Dim CentreExam As String
     Dim TypeExam As String
     Dim ligne As Integer
     Dim i As Integer
     Dim j As Integer
     
        'Entrée de la date de l'examen avec des protections sur le format de la date
        Do Until madate Like "##/##/##"
        madate = InputBox("Entrez la date au format jj/mm/aa :", "Date de la session")
        If madate = "" Then Exit Sub
        If Not madate Like "##/##/##" Then MsgBox _
        "Il faut saisir absolument un format jj/mm/aa sinon ça ne marche pas", vbExclamation, "Attention"
        Loop
     
        UserForm1.Hide
     
        If Mid(madate, 2, 1) = "/" Then
               lejour = "0" + Mid(madate, 1, 1)
               If Mid(madate, 4, 1) = "/" Then
                     lemois = Mid(madate, 3, 1)
               Else
                     lemois = Mid(madate, 3, 2)
               End If
     
        Else
               lejour = Mid(madate, 1, 2)
     
                If Mid(madate, 5, 1) = "/" Then
                    lemois = "0" + Mid(madate, 4, 1)
               Else
                     lemois = Mid(madate, 4, 2)
               End If
        End If
        lannee = Year(CDate(madate))
     
        Chemin = Replace(ActiveWorkbook.FullName, ActiveWorkbook.Name, "")
        Nomfichier = "Planning_" + LTrim(Str(lannee)) + lemois + lejour
     
       Call BatchConvertCsvXls
     
       On Error GoTo erreur2
    'Ouverture du fichier planning
    Workbooks.Open Filename:=Chemin & Nomfichier & ".xls"
     
    'Format du planing pour éviter la répétition des noms
       Workbooks(Nomfichier & ".xls").Activate
       Cells(1, 5) = Cells(3, 7)
     
        Workbooks("Modele_LPO_DGAC_FCL055.xls").Activate
        Sheets("Echecs").Select
        Sheets("Echecs").Copy Before:=Workbooks(Nomfichier & ".xls").Sheets(Nomfichier & ".csv")
     
       Workbooks(Nomfichier & ".xls").Sheets(Nomfichier & ".csv").Select
        TypeExam = Range("G3")
     'suppression des doublons
       For ligne = 1 To DerLign
          If Left(Cells(ligne, 8), 12) = "Ecoute Bande" Or Cells(ligne, 8) = "QCM" Then
                Range(Cells(ligne, 1), Cells(ligne, 20)).Select
                Selection.Delete Shift:=xlUp
                ligne = ligne - 1
          End If
       Next
     
       If TypeExam = "FCL1.200" Then
       DerLign = ((DerLign - 2) / 3) + 2
       For j = 3 To DerLign
    Range("A" & j).Value = Left(Range("A" & j).Value, 2) & "h" & Mid(Range("A" & j).Value, 4, 2) & _
    " - " & Format(Left(Range("A" & j).Value, 2) + 2, "00") & "h" & Mid(Range("A" & j).Value, 4, 2)
    Next j
        End If
     
        If TypeExam = "FCL1.028 IFR" Then
        DerLign = ((DerLign - 2) / 2) + 2
       For j = 3 To DerLign
       If Mid(Range("A" & j), 4, 2) + 15 > 59 Then
    Range("A" & j).Value = Left(Range("A" & j).Value, 2) & "h" & Mid(Range("A" & j), 4, 2) & _
    " - " & Format(Left(Range("A" & j).Value, 2) + 2, "00") & "h" & Format(Mid(Range("A" & j), 4, 2) - 45, "00")
     
    Else
    Range("A" & j).Value = Left(Range("A" & j).Value, 2) & "h" & Mid(Range("A" & j), 4, 2) & _
    " - " & Format(Left(Range("A" & j).Value, 2) + 1, "00") & "h" & Format(Mid(Range("A" & j), 4, 2) + 15, "00")
    End If
     
    Next j
        End If
     
        If TypeExam = "FCL1.028 VFR" Then
       DerLign = ((DerLign - 2) / 2) + 2
       For j = 3 To DerLign
    Range("A" & j).Value = Left(Range("A" & j).Value, 2) & "h" & Mid(Range("A" & j).Value, 4, 2) & _
    " - " & Format(Left(Range("A" & j).Value, 2) + 1, "00") & "h" & Mid(Range("A" & j).Value, 4, 2)
    Next j
        End If
     
        Range("A1").Select
        Selection.ClearContents
     
        Columns("G:K").Select
        Selection.Delete Shift:=xlToLeft
     
        Columns("A:A").ColumnWidth = 11
        Columns("B:B").ColumnWidth = 8
        Columns("C:C").ColumnWidth = 5
        Columns("D:D").AutoFit
        Columns("E:E").AutoFit
        Columns("F:F").AutoFit
        Rows("1:1").RowHeight = 33
     
     
        Columns("A:F").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
        End With
     
        Range("C1").Select
        Selection.ClearContents
     
        CentreExam = Left(Range("B1"), InStr(Range("B1"), " ") - 1)
     
        Range("B1:C1").Select
        With Selection
            .HorizontalAlignment = xlLeft
            .VerticalAlignment = xlCenter
        End With
        Selection.Merge
        ActiveCell.Value = StrConv(CentreExam, 3)
        Range("B2").Select
        Rows("2:2").RowHeight = 25.5
        Range("A1:E1").Select
        Selection.Font.Bold = True
        Selection.HorizontalAlignment = xlCenter
     
        With Workbooks(Nomfichier & ".xls")
        .Activate
        Cells.Select
        Selection.Copy
     
        Cells.Select
        .Sheets.Add
        .Sheets("Feuil2").Name = "Notations"
        .Sheets("Notations").Select
        Cells.Select
        .Sheets("Notations").Paste
        .Sheets.Add
        .Sheets("Feuil3").Name = "Emargement"
        .Sheets("Emargement").Select
        Cells.Select
        .Sheets("Emargement").Paste
        .Sheets.Add
        .Sheets("Feuil4").Name = "Appel"
        .Sheets("Appel").Select
        .Sheets("Appel").Paste
     
        If Application.PathSeparator = ":" Then
        .Sheets(Nomfichier & ".csv").Delete
        Else
        .Sheets(Nomfichier).Delete
        End If
     
        .Sheets("Notations").Select
        Range("A1").Select
        .Sheets("Emargement").Select
        Range("A1").Select
        .Sheets("Appel").Select
        Range("A1").Select
     
        For ligne = 1 To 200
           If Cells(ligne, 7) = "Oui" Then
                Range(Cells(ligne, 1), Cells(ligne, 6)).Select
                With Selection.Interior
                   .ColorIndex = 50
                   .Pattern = xlSolid
                   .PatternColorIndex = xlAutomatic
                End With
            End If
        Next
     
        Columns("G:G").Select
        Selection.Delete Shift:=xlToLeft
        Range("A1").Select
     
        Rows("1:1").Select
        Selection.Insert Shift:=xlDown
        Selection.RowHeight = 70
        Range("A1").Select
        ActiveCell.FormulaR1C1 = "Appel des Candidats"
        Range("A1").Select
        With Selection.Font
            .Name = "Arial"
            .Size = 26
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Selection.Font.Bold = True
        Selection.Font.Underline = xlUnderlineStyleSingle
        Selection.HorizontalAlignment = xlCenter
        Range("A1:F1").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .IndentLevel = 0
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = True
        End With
        Selection.HorizontalAlignment = xlCenter
     
        For ligne = 3 To 200
           If Cells(ligne, 1) <> "" Then
                Range(Cells(ligne, 1), Cells(ligne, 6)).Select
                Selection.Borders(xlDiagonalDown).LineStyle = xlNone
                Selection.Borders(xlDiagonalUp).LineStyle = xlNone
                With Selection.Borders(xlEdgeLeft)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlEdgeTop)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlEdgeBottom)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlEdgeRight)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlInsideVertical)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
     
    Range("G" & ligne).FormulaLocal = "=NB.SI.ENS(Echecs!A2:A6009;D & ligne;Echecs!B2:B6009;E & ligne)"
            End If
     
        Next
     
        Range("A1").Select
     
        .Sheets("Emargement").Select
     
        Columns("F:G").Select
        Selection.Delete Shift:=xlToLeft
        Selection.ColumnWidth = 20
        Rows("3:132").Select
        Selection.RowHeight = 25
        Range("F2").Select
        ActiveCell.FormulaR1C1 = "Signature"
        Range("F2").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .IndentLevel = 0
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        With Selection.Font
            .Name = "Arial"
            .FontStyle = "Normal"
            .Size = 10
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
     
        Range("G2").Select
        Selection.ColumnWidth = 7
        ActiveCell.FormulaR1C1 = "Table"
        Range("G2").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .IndentLevel = 0
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        With Selection.Font
            .Name = "Arial"
            .FontStyle = "Normal"
            .Size = 10
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
     
        Rows("1:1").Select
        Selection.Insert Shift:=xlDown
        Selection.RowHeight = 70
        Range("A1").Select
        ActiveCell.FormulaR1C1 = "Emargement"
        Range("A1").Select
        With Selection.Font
            .Name = "Arial"
            .Size = 26
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Selection.Font.Bold = True
        Selection.Font.Underline = xlUnderlineStyleSingle
        Selection.HorizontalAlignment = xlCenter
        Range("A1:G1").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .IndentLevel = 0
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = True
        End With
        Selection.HorizontalAlignment = xlCenter
     
        For ligne = 3 To 200
           If Cells(ligne, 1) <> "" Then
                Range(Cells(ligne, 1), Cells(ligne, 7)).Select
                Selection.Borders(xlDiagonalDown).LineStyle = xlNone
                Selection.Borders(xlDiagonalUp).LineStyle = xlNone
                With Selection.Borders(xlEdgeLeft)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlEdgeTop)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlEdgeBottom)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlEdgeRight)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlInsideVertical)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
            End If
        Next
     
       If TypeExam = "FCL1.200" Then
     
       Range("A1").Select
     
        .Sheets("Notations").Select
        Columns("F:K").Select
        Selection.Delete Shift:=xlToLeft
        Range("F2").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        ActiveCell.FormulaR1C1 = "QCM"
        With ActiveCell.Characters(Start:=1, Length:=5).Font
            .Name = "Arial"
            .FontStyle = "Normal"
            .Size = 10
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Range("G2").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        ActiveCell.FormulaR1C1 = "Note"
        With ActiveCell.Characters(Start:=1, Length:=5).Font
            .Name = "Arial"
            .FontStyle = "Normal"
            .Size = 10
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Range("H2").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        ActiveCell.FormulaR1C1 = "Bande"
        With ActiveCell.Characters(Start:=1, Length:=4).Font
            .Name = "Arial"
            .FontStyle = "Normal"
            .Size = 10
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Range("I2").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        ActiveCell.FormulaR1C1 = "Note"
        With ActiveCell.Characters(Start:=1, Length:=7).Font
            .Name = "Arial"
            .FontStyle = "Normal"
            .Size = 10
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Range("J2").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        ActiveCell.FormulaR1C1 = "Voy/Sit"
        With ActiveCell.Characters(Start:=1, Length:=4).Font
            .Name = "Arial"
            .FontStyle = "Normal"
            .Size = 10
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Range("K2").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        ActiveCell.FormulaR1C1 = "Note"
        With ActiveCell.Characters(Start:=1, Length:=6).Font
            .Name = "Arial"
            .FontStyle = "Normal"
            .Size = 10
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Range("L2").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        ActiveCell.FormulaR1C1 = "Niveau"
        With ActiveCell.Characters(Start:=1, Length:=6).Font
            .Name = "Arial"
            .FontStyle = "Normal"
            .Size = 10
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Selection.HorizontalAlignment = xlCenter
        Columns("F:L").Select
        Selection.ColumnWidth = 5
        Rows("3:" & DerLign).Select
        Selection.RowHeight = 25
     
        Rows("1:1").Select
        Selection.Insert Shift:=xlDown
        Selection.RowHeight = 70
        Range("A1").Select
        ActiveCell.FormulaR1C1 = "Notation"
        Range("A1").Select
        With Selection.Font
            .Name = "Arial"
            .Size = 26
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Selection.Font.Bold = True
        Selection.Font.Underline = xlUnderlineStyleSingle
        Selection.HorizontalAlignment = xlCenter
     
        Range("A1:L1").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .IndentLevel = 0
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = True
        End With
    Selection.HorizontalAlignment = xlCenter
     
        For ligne = 3 To 200
           If Cells(ligne, 1) <> "" Then
                Range(Cells(ligne, 1), Cells(ligne, 12)).Select
                Selection.Borders(xlDiagonalDown).LineStyle = xlNone
                Selection.Borders(xlDiagonalUp).LineStyle = xlNone
                With Selection.Borders(xlEdgeLeft)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlEdgeTop)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlEdgeBottom)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlEdgeRight)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlInsideVertical)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
            End If
        Next
     
        'ajout d'une diagonale en colonne J de la feuille notation
        For ligne = 4 To 200
           If Cells(ligne, 1) <> "" Then
                Cells(ligne, 10).Select
                        Selection.Borders(xlDiagonalDown).LineStyle = xlNone
                        Selection.Borders(xlDiagonalUp).LineStyle = xlContinuous
                        Selection.Borders(xlDiagonalUp).Weight = xlThin
                        Selection.Borders(xlDiagonalUp).ColorIndex = 1
     
            End If
        Next
     
        Columns(4).AutoFit
        Columns(5).AutoFit
     
        End If
     
        If TypeExam = "FCL1.028 IFR" Or TypeExam = "FCL1.028 VFR" Then
        Range("A1").Select
     
        .Sheets("Notations").Select
        Columns("F:G").Select
        Selection.Delete Shift:=xlToLeft
        Range("F2").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        ActiveCell.FormulaR1C1 = "Bande"
        With ActiveCell.Characters(Start:=1, Length:=5).Font
            .Name = "Arial"
            .FontStyle = "Normal"
            .Size = 10
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Range("G2").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        ActiveCell.FormulaR1C1 = "Note"
        With ActiveCell.Characters(Start:=1, Length:=4).Font
            .Name = "Arial"
            .FontStyle = "Normal"
            .Size = 10
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Range("H2").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        ActiveCell.FormulaR1C1 = "Voy/Sit"
        With ActiveCell.Characters(Start:=1, Length:=6).Font
            .Name = "Arial"
            .FontStyle = "Normal"
            .Size = 9
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Range("I2").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        ActiveCell.FormulaR1C1 = "Note"
        With ActiveCell.Characters(Start:=1, Length:=4).Font
            .Name = "Arial"
            .FontStyle = "Normal"
            .Size = 10
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Range("J2").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        ActiveCell.FormulaR1C1 = "Niveau"
        With ActiveCell.Characters(Start:=1, Length:=6).Font
            .Name = "Arial"
            .FontStyle = "Normal"
            .Size = 10
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Columns("F:J").Select
        Selection.ColumnWidth = 5
        Rows("3:" & DerLign).Select
        Selection.RowHeight = 25
     
        Rows("1:1").Select
        Selection.Insert Shift:=xlDown
        Selection.RowHeight = 70
        Range("A1").Select
        ActiveCell.FormulaR1C1 = "Notation"
        Range("A1").Select
        With Selection.Font
            .Name = "Arial"
            .Size = 26
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleNone
            .ColorIndex = xlAutomatic
        End With
        Selection.Font.Bold = True
        Selection.Font.Underline = xlUnderlineStyleSingle
        Range("A1:J1").Select
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .IndentLevel = 0
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = True
        End With
        Selection.HorizontalAlignment = xlCenter
     
        For ligne = 3 To 200
           If Cells(ligne, 1) <> "" Then
                Range(Cells(ligne, 1), Cells(ligne, 10)).Select
                Selection.Borders(xlDiagonalDown).LineStyle = xlNone
                Selection.Borders(xlDiagonalUp).LineStyle = xlNone
                With Selection.Borders(xlEdgeLeft)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlEdgeTop)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlEdgeBottom)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlEdgeRight)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
                With Selection.Borders(xlInsideVertical)
                    .LineStyle = xlContinuous
                    .Weight = xlThin
                    .ColorIndex = xlAutomatic
                End With
            End If
        Next
     
        'ajout d'une diagonale en colonne H de la feuille notation
        For ligne = 4 To 200
           If Cells(ligne, 1) <> "" Then
                Cells(ligne, 8).Select
                        Selection.Borders(xlDiagonalDown).LineStyle = xlNone
                        Selection.Borders(xlDiagonalUp).LineStyle = xlContinuous
                        Selection.Borders(xlDiagonalUp).Weight = xlThin
                        Selection.Borders(xlDiagonalUp).ColorIndex = 1
     
            End If
        Next
        End If
     
        Range("A1").Select
     
        .Sheets("Appel").Select
     
       Application.DisplayAlerts = False
     
        .Sheets("Echecs").Delete
     
        .SaveAs Filename:= _
            Replace(ActiveWorkbook.Path, ActiveWorkbook.Name, "") & Application.PathSeparator _
            & "listing " + LTrim(Str(lannee)) + lemois + lejour + ".xls", FileFormat:=xlWorkbookNormal, _
            Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, _
            CreateBackup:=False
     
        Application.DisplayAlerts = True
     
        'teste si c'est un mac ou windows et efface le fichier inutile
        If Application.PathSeparator = ":" Then
        KillFileOnMac (Chemin & Nomfichier & ".xls")
        Else
        Kill (Chemin & Nomfichier & ".xls")
     
        CentreExam = ""
        TypeExam = ""
     
        End With
     
    erreur2:
    Exit Sub
    ActiveWorkbook.Close Savechanges:=False
    Application.Quit
    Unload UserForm1
     Resume Next
     
     End Sub
    Sub BatchConvertCsvXls()
     
    Dim wb As Object
    Dim i As Integer
     
        On Error GoTo erreur
        Set wb = Workbooks.Open(Chemin & Nomfichier & ".csv")
     
        Application.DisplayAlerts = False
        Application.ScreenUpdating = False
        DerLign = Range("A" & Rows.Count).End(xlUp).Row
        For i = 1 To DerLign
        Range("F" & i).NumberFormat = "dd/mm/yyyy"
     
        Range("A" & i).Select
     
    Selection.TextToColumns Destination:=Range("A" & i), DataType:=xlDelimited, _
    TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=False, _
    Semicolon:=True, Comma:=False, Space:=False, Other:=False, FieldInfo _
    :=Array(Array(1, 1), Array(2, 1), Array(3, 1), Array(4, 1), Array(5, 1), Array(6, 1), _
    Array(7, 1), Array(8, 1), Array(9, 1), Array(10, 1), Array(11, 1), Array(12, 1))
        Next i
     
          With wb
             .SaveAs Filename:=Replace(wb.FullName, ".csv", ".xls"), FileFormat:=xlNormal
        End With
               Set wb = Nothing
     
        Exit Sub
     
    erreur:
         MsgBox "Le fichier est introuvable!"
        Exit Sub
        Resume Next
     
    UserForm1.Show
     
        End Sub
     
    Sub EchecsCandidats()
     
    Dim CentreExam As String
     Dim TypeExam As String
     Dim i As Integer
     Dim j As Integer
     Dim ligne As Integer
     
        'Entrée de la date de l'examen avec des protections sur le format de la date
        Do Until madate Like "##/##/##"
        madate = InputBox("Entrez la date au format jj/mm/aa :", "Date de la session")
        If madate = "" Then Exit Sub
        If Not madate Like "##/##/##" Then MsgBox _
        "Il faut saisir absolument un format jj/mm/aa sinon ça ne marche pas", vbExclamation, "Attention"
        Loop
     
        UserForm1.Hide
     
        If Mid(madate, 2, 1) = "/" Then
               lejour = "0" + Mid(madate, 1, 1)
               If Mid(madate, 4, 1) = "/" Then
                     lemois = Mid(madate, 3, 1)
               Else
                     lemois = Mid(madate, 3, 2)
               End If
     
        Else
               lejour = Mid(madate, 1, 2)
     
                If Mid(madate, 5, 1) = "/" Then
                    lemois = "0" + Mid(madate, 4, 1)
               Else
                     lemois = Mid(madate, 4, 2)
               End If
        End If
        lannee = Year(CDate(madate))
     
        Chemin = Replace(ActiveWorkbook.FullName, ActiveWorkbook.Name, "")
        Nomfichier = "Planning_" + LTrim(Str(lannee)) + lemois + lejour
     
       Call BatchConvertCsvXls
    'Ouverture du fichier planning
    Workbooks.Open Filename:=Chemin & Nomfichier & ".xls"
     
     
     
     
     
    End Sub
     
    Function KillFileOnMac(Filestr As String)
     
    'Delete files from a Mac.
    'Uses AppleScript to avoid the problem with long file names
        Dim ScriptToKillFile As String
        ScriptToKillFile = "tell application " & Chr(34) & _
                           "Finder" & Chr(34) & Chr(13)
        ScriptToKillFile = ScriptToKillFile & _
                     "do shell script ""rm "" & quoted form of posix path of " & _
                      Chr(34) & Filestr & Chr(34) & Chr(13)
        ScriptToKillFile = ScriptToKillFile & "end tell"
     
        On Error Resume Next
        MacScript (ScriptToKillFile)
        On Error GoTo 0
    End Function

  4. #4
    Membre émérite

    Homme Profil pro
    Directeur de projet
    Inscrit en
    Septembre 2010
    Messages
    606
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Directeur de projet
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Septembre 2010
    Messages : 606
    Par défaut croisement de 2 listes
    Bonsoir Xavion,
    je laisse les administrateurs gérer le forum, mais il me semble que ta demande VBA/Excel ne devrait pas être dans la parie Applescript...

    Quoiqu'il en soit, pour confronter 2 listes dans Excel, il y a principalement 2 methodes:
    - la fonction VLOOKUP
    - la méthode Search

    La première est rapide, mais nécessite un contrôle des erreurs ce qui peut être laborieux (si le candidat n'est pas dans liste d'échec il faut gérer avec un if (ISERROR(xx),...
    La seconde est plus propre je trouve.
    Libre à toi : voici une explication de chaque.

    la fonction VLOOKUP(Ref,Range,Col, False) peut être assignée à toutes les cellules d'une nouvelle colonne dans le fichier des candiats (toutes les lignes de candidats):
    - Ref doit contenir la cellule qui contient le nom du candidat recherché
    - Range doit contenir une référence à la plage des liste de candidats en échec avec leur notes. le nom du candidat dans ce range doit être en première colonne. Ce range peut être dans un autre fichier du moment que le fichier est la feuille sont ouverts
    - Col contient la colonne qui contient la note que tu veux afficher sur la cellule.
    Exemple :
    Liste de candidats en appel en col A, de la ligne 1 à nblignes. En colonne C (=col 3), tu veux ajouter les notes situées en colonne 5 du fichier des candidat en échec (si dans la liste !)
    La liste des candidats en échec, avec leurs notes, est dans le fichier dont le nom est dans la variable Anciennes_Notes" et la feuille dans FeuilleAN

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    Range(Cells(1, 3), Cells(nblignes, 3)).FormulaR1C1 = "=VLOOKUP(RC[-3],'[" & Anciennes_Notes & "]" & FeuilleAN & "'!R2C1:R65000C5,5,FALSE)"
    La fonction Search permets de chercher dans une feuille (ou zone d'une feuille) une valeur donnée, puis, si une valeur est trouvée, de récupérer les coordonnées de la cellule. L'exemple ci -dessous est commenté:
    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
     
    ' on mets le candidat recherché dans la variable Eleve (ligne I, colonne 3) par exemple
    Eleve = Cells(I, 3)
    ' la recherche se fait dans le fichier Anciennes_Notes, dans la feuille FeuilleAN
    '        ces 2 variables doivent contenir les valeurs de ton fichier et la feuille
    Workbooks(Anciennes_Notes).Sheets(FeuilleAN).Activate
    ' ici les candidats en échec sont dans la colonne 3 de la ligne 2 à 30000
    With Worksheets(Anciennes_Notes).Range(Cells(2, 3), Cells(30000, 3))
       Set c = .Find(Eleve, LookIn:=xlValues)
       If c Is Nothing Then
           ' il n’y a pas d’élève avec le nom Eleve dans le fichier des anciennes notes (candidat en échec)
           ' tu peux inscrire qu’il n’y a pas d’examen précédent ou ne rien faire ici !
           Else
           ' la ligne C.row contient la valeur de la ligne recherchée. Tu peux assigner les notes à des variables
           ' dans l’exemple ci-dessous, les notes des examens précédents sont en colonnes 2, 5 et 6
           Note1 = Worksheets(Anciennes_Notes).Cells(c.Row, 2)
           Note2 = Worksheets(Anciennes_Notes).Cells(c.Row, 5)
           Note3 = Worksheets(Anciennes_Notes).Cells(c.Row, 6)
           Workbooks(Mon_Fichier).Sheets(Ma_Feuille).Activate
           ' dans la feuille principale, on mets les 3 notes en colonnes 20, 21, 22
           Cells(I, 20) = Note1
           Cells(I, 21) = Note2
           Cells(I, 22) = Note3
           End If
       End With

    Cela implique de faire une boucle sur I pour parcourir tous les candidats (toutes les lignes de ta liste principale).

    A ce propos, en regardant ton code, je vois que tu fais des boucles avec des index fixes (3 à 200) et tu adresses des valeurs figées "rows("3:132").select"
    Que se passe-t-il si tu as plus de 132 lignes ? Attention !
    Je te conseille de tout mettre en variables: Par exemple si tu veux connaître le nombre de lignes d'un block de données commençant en A3 :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    nblignes = Range("A3").CurrentRegion.Rows.Count
    En espérant t'avoir aidé
    Cordialement

  5. #5
    Membre averti
    Homme Profil pro
    Ingénieur aviation civile
    Inscrit en
    Novembre 2012
    Messages
    52
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Ingénieur aviation civile
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Novembre 2012
    Messages : 52
    Par défaut
    Coucou Pbell, je te remercie infiniment pour ton aide précieuse. Je suis en train de tester ton code (que j'adapte). En fait, je dois faire plusieurs boucles car je dois confondre prénom, nom, date de naissance et type d'exam (il y en a 3 différents). De toute façon, il y aura une part d'erreur possible dans la saisie du candidat lors de son inscription. Connais-tu un moyen de lever ces erreurs possibles et de confondre une mauvaise saisie?
    Pour l'instant j'ai des erreurs avec la fonction find. Dans un premier temps 1004 et maintenant 9, je suis en train de débuger.
    Bon dimanche et excellente fête de fin d'année.

Discussions similaires

  1. Réponses: 0
    Dernier message: 29/10/2014, 02h29
  2. aide pour synthetiser au mieux mon code
    Par lefelinherbivore dans le forum jQuery
    Réponses: 3
    Dernier message: 16/02/2011, 14h12
  3. Ou placer mon code pour une conception correcte ?
    Par Imakandis dans le forum Architecture
    Réponses: 2
    Dernier message: 07/07/2010, 16h51
  4. Probleme ADO adapter une requete sql pour l'utiliser dans mon code vb6
    Par jacko842 dans le forum VB 6 et antérieur
    Réponses: 3
    Dernier message: 22/04/2009, 15h53
  5. Je besoin d'aide pour terminer mon code
    Par Paulinho dans le forum C++
    Réponses: 7
    Dernier message: 06/11/2005, 23h30

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