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 :

exécuter une partie d'une macro


Sujet :

Macros et VBA Excel

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre éclairé

    Homme Profil pro
    Restaurateur
    Inscrit en
    Juin 2008
    Messages
    316
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Restaurateur
    Secteur : Alimentation

    Informations forums :
    Inscription : Juin 2008
    Messages : 316
    Billets dans le blog
    1
    Par défaut exécuter une partie d'une macro
    Bonjour,
    j'ai une macro qui execute des calculs sur une semaine de lundi à dimanche,
    dans mon code je me suis mis des indices du type : 'lundi, 'mardi... 'dimanche
    pour me reperer...

    j'aimerai pouvoir, par un menu deroulant sur une feuille excel, sur 2 cellule, determiner que je veuille executer la macro de mardi à samedi par exemple...
    et pas de lundi a dimanche...

    vous me comprenez...??

    dois je separer la macro en 7 ( une pour chaque jour ) et une 8eme qui irai chercher les valeurs de mes deux cellules et qui executerai toutes les macros comprises entre les 2 valeurs...? mais je pense que ca va m'alourdir le fichier

    ou bien peut-on avoir des reperes dans le codes des 7jours,et une ligne qui determine quels blocs de codes on execute ?

  2. #2
    Membre Expert
    Profil pro
    Inscrit en
    Juillet 2007
    Messages
    2 130
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juillet 2007
    Messages : 2 130
    Par défaut
    Salut djoumusic et bonne année à tous
    Comme d'hab., moins tu donnes plus de données, plus on peut moins t'aider!!!
    Tu peux fixer, dans la première partie de ta macro, au travers de recherche, les cellules de début et de fin.
    Tu peux utiliser des select case.
    tu peux utiliser un filtre Auto et les lignes visibles.
    Mais sans la macro...
    A+

  3. #3
    Membre éclairé

    Homme Profil pro
    Restaurateur
    Inscrit en
    Juin 2008
    Messages
    316
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Restaurateur
    Secteur : Alimentation

    Informations forums :
    Inscription : Juin 2008
    Messages : 316
    Billets dans le blog
    1
    Par défaut
    voila la macro
    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
    'lundi
    '1
    TimerMS
    Application.SendKeys Range("f47").Value
    Application.SendKeys "{TAB}"
    '2
    TimerMS
    Application.SendKeys Range("g47").Value
    Application.SendKeys "{TAB}"
    '3
    TimerMS
    Application.SendKeys Range("h47").Value
    Application.SendKeys "{TAB}"
    '4
    TimerMS
    Application.SendKeys "{TAB}"
    '5
    TimerMS
    Application.SendKeys "{TAB}"
    '6
    TimerMS
    Application.SendKeys Range("i47").Value
    Application.SendKeys "{TAB}"
    '7
    TimerMS
    Application.SendKeys "{TAB}"
    '8
    TimerMS
    Application.SendKeys "{TAB}"
    '9
    TimerMS
    Application.SendKeys "{TAB}"
     
    '10
    TimerMS
    Application.SendKeys Range("f48").Value
    Application.SendKeys "{TAB}"
     
    '11
    TimerMS
    Application.SendKeys Range("g48").Value
    Application.SendKeys "{TAB}"
    '12
    TimerMS
    Application.SendKeys Range("h48").Value
    Application.SendKeys "{TAB}"
    '13
    TimerMS
    Application.SendKeys "{TAB}"
    '14
    TimerMS
    Application.SendKeys "{TAB}"
    '15
    TimerMS
    Application.SendKeys "{TAB}"
    '16
    TimerMS
    Application.SendKeys "{TAB}"
    '17
    TimerMS
    Application.SendKeys "{TAB}"
    '18
    TimerMS
    Application.SendKeys "{TAB}"
     
     
                      'mardi
    '1
    TimerMS
    Application.SendKeys Range("f49").Value
    Application.SendKeys "{TAB}"
    '2
    TimerMS
    Application.SendKeys Range("g49").Value
    Application.SendKeys "{TAB}"
    '3
    TimerMS
    Application.SendKeys Range("h49").Value
    Application.SendKeys "{TAB}"
    '4
    TimerMS
    Application.SendKeys "{TAB}"
    '5
    TimerMS
    Application.SendKeys "{TAB}"
    '6
    TimerMS
    Application.SendKeys Range("i49").Value
    Application.SendKeys "{TAB}"
    '7
    TimerMS
    Application.SendKeys "{TAB}"
    '8
    TimerMS
    Application.SendKeys "{TAB}"
    '9
    TimerMS
    Application.SendKeys "{TAB}"
     
    '10
    TimerMS
    Application.SendKeys Range("f50").Value
    Application.SendKeys "{TAB}"
     
    '11
    TimerMS
    Application.SendKeys Range("g50").Value
    Application.SendKeys "{TAB}"
    '12
    TimerMS
    Application.SendKeys Range("h50").Value
    Application.SendKeys "{TAB}"
    '13
    TimerMS
    Application.SendKeys "{TAB}"
    '14
    TimerMS
    Application.SendKeys "{TAB}"
    '15
    TimerMS
    Application.SendKeys "{TAB}"
    '16
    TimerMS
    Application.SendKeys "{TAB}"
    '17
    TimerMS
    Application.SendKeys "{TAB}"
    '18
    TimerMS
    Application.SendKeys "{TAB}"
     
     
                   'mercredi
     '1
    TimerMS
    Application.SendKeys Range("f51").Value
    Application.SendKeys "{TAB}"
    '2
    TimerMS
    Application.SendKeys Range("g51").Value
    Application.SendKeys "{TAB}"
    '3
    TimerMS
    Application.SendKeys Range("h51").Value
    Application.SendKeys "{TAB}"
    '4
    TimerMS
    Application.SendKeys "{TAB}"
    '5
    TimerMS
    Application.SendKeys "{TAB}"
    '6
    TimerMS
    Application.SendKeys Range("i51").Value
    Application.SendKeys "{TAB}"
    '7
    TimerMS
    Application.SendKeys "{TAB}"
    '8
    TimerMS
    Application.SendKeys "{TAB}"
    '9
    TimerMS
    Application.SendKeys "{TAB}"
     
    '10
    TimerMS
    Application.SendKeys Range("f52").Value
    Application.SendKeys "{TAB}"
     
    '11
    TimerMS
    Application.SendKeys Range("g52").Value
    Application.SendKeys "{TAB}"
    '12
    TimerMS
    Application.SendKeys Range("h52").Value
    Application.SendKeys "{TAB}"
    '13
    TimerMS
    Application.SendKeys "{TAB}"
    '14
    TimerMS
    Application.SendKeys "{TAB}"
    '15
    TimerMS
    Application.SendKeys "{TAB}"
    '16
    TimerMS
    Application.SendKeys "{TAB}"
    '17
    TimerMS
    Application.SendKeys "{TAB}"
    '18
    TimerMS
    Application.SendKeys "{TAB}"
     
     
                   'jeudi
      '1
    TimerMS
    Application.SendKeys Range("f53").Value
    Application.SendKeys "{TAB}"
    '2
    TimerMS
    Application.SendKeys Range("g53").Value
    Application.SendKeys "{TAB}"
    '3
    TimerMS
    Application.SendKeys Range("h53").Value
    Application.SendKeys "{TAB}"
    '4
    TimerMS
    Application.SendKeys "{TAB}"
    '5
    TimerMS
    Application.SendKeys "{TAB}"
    '6
    TimerMS
    Application.SendKeys Range("i53").Value
    Application.SendKeys "{TAB}"
    '7
    TimerMS
    Application.SendKeys "{TAB}"
    '8
    TimerMS
    Application.SendKeys "{TAB}"
    '9
    TimerMS
    Application.SendKeys "{TAB}"
     
    '10
    TimerMS
    Application.SendKeys Range("f54").Value
    Application.SendKeys "{TAB}"
     
    '11
    TimerMS
    Application.SendKeys Range("g54").Value
    Application.SendKeys "{TAB}"
    '12
    TimerMS
    Application.SendKeys Range("h54").Value
    Application.SendKeys "{TAB}"
    '13
    TimerMS
    Application.SendKeys "{TAB}"
    '14
    TimerMS
    Application.SendKeys "{TAB}"
    TimerMS
    Application.SendKeys "{TAB}"
    '16
    TimerMS
    Application.SendKeys "{TAB}"
    '17
    TimerMS
    Application.SendKeys "{TAB}"
    '18
    TimerMS
    Application.SendKeys "{TAB}"
     
                      'vendredi
     
        '1
    TimerMS
    Application.SendKeys Range("f55").Value
    Application.SendKeys "{TAB}"
    '2
    TimerMS
    Application.SendKeys Range("g55").Value
    Application.SendKeys "{TAB}"
    '3
    TimerMS
    Application.SendKeys Range("h55").Value
    Application.SendKeys "{TAB}"
    '4
    TimerMS
    Application.SendKeys "{TAB}"
    '5
    TimerMS
    Application.SendKeys "{TAB}"
    '6
    TimerMS
    Application.SendKeys Range("i55").Value
    Application.SendKeys "{TAB}"
    '7
    TimerMS
    Application.SendKeys "{TAB}"
    '8
    TimerMS
    Application.SendKeys "{TAB}"
    '9
    TimerMS
    Application.SendKeys "{TAB}"
     
    '10
    TimerMS
    Application.SendKeys Range("f56").Value
    Application.SendKeys "{TAB}"
     
    '11
    TimerMS
    Application.SendKeys Range("g56").Value
    Application.SendKeys "{TAB}"
    '12
    TimerMS
    Application.SendKeys Range("h56").Value
    Application.SendKeys "{TAB}"
    '13
    TimerMS
    Application.SendKeys "{TAB}"
    '14
    TimerMS
    Application.SendKeys "{TAB}"
    '15
    TimerMS
    Application.SendKeys "{TAB}"
    '16
    TimerMS
    Application.SendKeys "{TAB}"
    '17
    TimerMS
    Application.SendKeys "{TAB}"
    '18
    TimerMS
    Application.SendKeys "{TAB}"
     
                       'samedi
        '1
    TimerMS
    Application.SendKeys Range("f57").Value
    Application.SendKeys "{TAB}"
    '2
    TimerMS
    Application.SendKeys Range("g57").Value
    Application.SendKeys "{TAB}"
    '3
    TimerMS
    Application.SendKeys Range("h57").Value
    Application.SendKeys "{TAB}"
    '4
    TimerMS
    Application.SendKeys "{TAB}"
    '5
    TimerMS
    Application.SendKeys "{TAB}"
    '6
    TimerMS
    Application.SendKeys Range("i57").Value
    Application.SendKeys "{TAB}"
    '7
    TimerMS
    Application.SendKeys "{TAB}"
    '8
    TimerMS
    Application.SendKeys "{TAB}"
    '9
    TimerMS
    Application.SendKeys "{TAB}"
     
    '10
    TimerMS
    Application.SendKeys Range("f58").Value
    Application.SendKeys "{TAB}"
     
    '11
    TimerMS
    Application.SendKeys Range("g58").Value
    Application.SendKeys "{TAB}"
    '12
    TimerMS
    Application.SendKeys Range("h58").Value
    Application.SendKeys "{TAB}"
    '13
    TimerMS
    Application.SendKeys "{TAB}"
    '14
    TimerMS
    Application.SendKeys "{TAB}"
    '15
    TimerMS
    Application.SendKeys "{TAB}"
    '16
    TimerMS
    Application.SendKeys "{TAB}"
    '17
    TimerMS
    Application.SendKeys "{TAB}"
    '18
    TimerMS
    Application.SendKeys "{TAB}"
     
                        'dimanche
     
        '1
    TimerMS
    Application.SendKeys Range("f59").Value
    Application.SendKeys "{TAB}"
    '2
    TimerMS
    Application.SendKeys Range("g59").Value
    Application.SendKeys "{TAB}"
    '3
    TimerMS
    Application.SendKeys Range("h59").Value
    Application.SendKeys "{TAB}"
    '4
    TimerMS
    Application.SendKeys "{TAB}"
    '5
    TimerMS
    Application.SendKeys "{TAB}"
    '6
    TimerMS
    Application.SendKeys Range("i59").Value
    Application.SendKeys "{TAB}"
    '7
    TimerMS
    Application.SendKeys "{TAB}"
    '8
    TimerMS
    Application.SendKeys "{TAB}"
    '9
    TimerMS
    Application.SendKeys "{TAB}"
     
    '10
    TimerMS
    Application.SendKeys Range("f60").Value
    Application.SendKeys "{TAB}"
     
    '11
    TimerMS
    Application.SendKeys Range("g60").Value
    Application.SendKeys "{TAB}"
    '12
    TimerMS
    Application.SendKeys Range("h60").Value
    Application.SendKeys "{TAB}"

    il y a un code pour cahque jour de la semaine,
    quand je l'execute, toute la macro est appliqué,
    peut on definir que l'on veut juste executer les codes entre mardi et samedi
    a savoir que la donnée "mardi" serait defini par une cellule (menu deroulant des jours de la semaine) et le samedi aussi....

    MErci

  4. #4
    Membre émérite
    Inscrit en
    Décembre 2006
    Messages
    897
    Détails du profil
    Informations forums :
    Inscription : Décembre 2006
    Messages : 897
    Par défaut Plus de précision
    avant d'aller plus loin, cette méthode de faire ne parait pas très réfléchie au premier abord.

    Il doit y avoir une solution plus logique, plus résumée.

    Le code est un peu long mais il y a l'air d'y avoir une logique entre le jour de la semaine et ( le numéro de la ligne, nombre de {TAB}).

    il doit être possible de gérer plus simplement en partant d'une ligne et en y additionnant (G53, G55, G56, G57...) ou ne tenant pas compte de de certains paramètres (cas {TAB} seuls) et la temporistaion avant de lancer les "SendKeys".

    De plus ça éviterait la gestion des "sendKeys" à la pelle en pointant directement sur la bonne cellule. Voir ton autre poste avec 26 déplacements "TAB".

    Un minimum est de nous envoyé une capture d'écran. Avec des condition de fonctionnement.

    Enfin, c'est ma proposition...

    ESVBA

  5. #5
    Membre Expert
    Profil pro
    Inscrit en
    Juillet 2007
    Messages
    2 130
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juillet 2007
    Messages : 2 130
    Par défaut
    Salut djoumusic et bonne année à tous
    137 poste et tu n'as toujours pas compris que moins tu donnes plus d'informations et plus on peut moins t'aider ?
    une date de début en A1, une date de fin en B1, et ça donerait un code du style :
    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
    Sub essai()
    Dim D_1 As Date
    Dim D_2 As Date
    Dim X As Long
    D_1 = [A1]
    D_2 = [B1]
    For X = D_1 To D_2
        '1
        TimerMS
        Application.SendKeys Cells(((Weekday(X, 2) - 1) * 2) + 47, "F")
        Application.SendKeys "{TAB}"
        '2
        TimerMS
        Application.SendKeys Cells(((Weekday(X, 2) - 1) * 2) + 47, "G")
        Application.SendKeys "{TAB}"
        '3
        TimerMS
        Application.SendKeys Cells(((Weekday(X, 2) - 1) * 2) + 47, "H")
        Application.SendKeys "{TAB}"
        '4
        TimerMS
        Application.SendKeys "{TAB}"
        '5
        TimerMS
        Application.SendKeys "{TAB}"
        '6
        TimerMS
        Application.SendKeys Cells(((Weekday(X, 2) - 1) * 2) + 47, "I")
        Application.SendKeys "{TAB}"
        '7
        TimerMS
        Application.SendKeys "{TAB}"
        '8
        TimerMS
        Application.SendKeys "{TAB}"
        '9
        TimerMS
        Application.SendKeys "{TAB}"
     
        '10
        TimerMS
        Application.SendKeys Cells(((Weekday(X, 2) - 1) * 2) + 48, "F")
        Application.SendKeys "{TAB}"
     
        '11
        TimerMS
        Application.SendKeys Cells(((Weekday(X, 2) - 1) * 2) + 48, "G")
        Application.SendKeys "{TAB}"
        '12
        TimerMS
        Application.SendKeys Cells(((Weekday(X, 2) - 1) * 2) + 48, "H")
        Application.SendKeys "{TAB}"
        If Weekday(X, 2) < 7 Then
            '13
            TimerMS
            Application.SendKeys "{TAB}"
            '14
            TimerMS
            Application.SendKeys "{TAB}"
            '15
            TimerMS
            Application.SendKeys "{TAB}"
            '16
            TimerMS
            Application.SendKeys "{TAB}"
            '17
            TimerMS
            Application.SendKeys "{TAB}"
            '18
            TimerMS
            Application.SendKeys "{TAB}"
        End If
    Next X
    End Sub
    Mais comme j'ai pas envie de multiplier mes postes pour demander des renseignements qui semblent hyper confidentiels, je m'arrête là
    A+

  6. #6
    Membre émérite
    Inscrit en
    Décembre 2006
    Messages
    897
    Détails du profil
    Informations forums :
    Inscription : Décembre 2006
    Messages : 897
    Par défaut Un grand merci pour lui, Gorfael
    A part pour piloter une autre application (?), l'utilisation des "{TAB}" n'est pas la solution idéale.

    Alors qu'une copie de fichier avec un "renommage" du contenu des cellules pourrait aider tout le monde à comprendre le problème.

    ESVBA

  7. #7
    Membre éclairé

    Homme Profil pro
    Restaurateur
    Inscrit en
    Juin 2008
    Messages
    316
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Restaurateur
    Secteur : Alimentation

    Informations forums :
    Inscription : Juin 2008
    Messages : 316
    Billets dans le blog
    1
    Par défaut
    Alors,
    j'ai pas été tres precis pour ne pas non plus embeter tout le monde avec mon probleme...
    et je voulais faire au plus court,
    je vois qu'il faut que je sois tres precis et que mes post ne suffisent pas pour m'aider...

    le code est certes un peu long mais je suis tres fier de l'avoir ecrit tout seul.. grace a vos aides multiples...
    et il existe peut etre une facon plus courte d'ecriture, mais finalement, ce n'est pas trop le probleme...


    l' application Application.SendKeys "{TAB}" me sert a piloter une page internet explorer...
    et il se trouve que j'ai parfois 26 fois Application.SendKeys "{TAB}" a faire pour arriver sur ma bonne case sur internet explorer
    alors j'ecris betement
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    Application.SendKeys "{TAB}"
    sur 26 lignes....
    existe t il une facon plus simple....
    du type Application.SendKeys "26*{TAB}"
    ou pas ?
    il faut obligatoirement ecrire
    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
    Application.SendKeys "{TAB}"
    Application.SendKeys "{TAB}"
    Application.SendKeys "{TAB}"
    Application.SendKeys "{TAB}"
    Application.SendKeys "{TAB}"
    Application.SendKeys "{TAB}"
    Application.SendKeys "{TAB}"
    Application.SendKeys "{TAB}"
    Application.SendKeys "{TAB}"
    Application.SendKeys "{TAB}"
    Application.SendKeys "{TAB}"
    Application.SendKeys "{TAB}"
    Application.SendKeys "{TAB}"
    Application.SendKeys "{TAB}"
    Application.SendKeys "{TAB}"
    ......

Discussions similaires

  1. donner une couleur a une partie d'une forme
    Par ralf91 dans le forum Windows Forms
    Réponses: 4
    Dernier message: 04/04/2008, 17h02
  2. Réponses: 1
    Dernier message: 04/04/2008, 12h14
  3. Sélectionner seulement une partie d'une valeur d'une cellule
    Par ArthurO0O dans le forum Macros et VBA Excel
    Réponses: 6
    Dernier message: 20/08/2007, 11h05
  4. masquer une partie d'une vidéo par une banniere
    Par lezabour dans le forum Général Conception Web
    Réponses: 1
    Dernier message: 16/10/2006, 16h47
  5. copier une partie d'une image vers une autre
    Par gregcat dans le forum Langage
    Réponses: 1
    Dernier message: 14/04/2006, 13h39

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