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

VB 6 et antérieur Discussion :

VB : Question de débutant


Sujet :

VB 6 et antérieur

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre confirmé
    Profil pro
    Inscrit en
    Avril 2005
    Messages
    200
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2005
    Messages : 200
    Par défaut VB : Question de débutant
    Bonjour,
    j'ai récupéré une application créée en VB (5 jecrois) qui est un outil de calcul (FORM) médical suivant l'age, le poids, etc. C'est visible sous la forme d'une fenetre qui ne change jamais (ce sont les champs qui sont modifiés)

    Il faut que je rajoute une légende en bas de la fenetre, je pensais en changeant l'image de fond. J'ai récupéré MSE (visual studio) j'arrive bien à ouvrir les fichiers dep, frm, frx, pdm, scc, vbp, vbw et un fichier texte.
    Mais je ne vois pas comment modifier l'image de fond de la fenetre car elle n'est renseignée nulle part dans ces fichiers.

    Du coup j'sui paumé et ne sais par où commencer. Si qqn veut bien me mettre sur la piste, que vous faut-il le code source? mais de quoi il y en a tellement!
    VOilà, merci de votre aide

  2. #2
    Membre émérite
    Avatar de parp1
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    829
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : France, Calvados (Basse Normandie)

    Informations forums :
    Inscription : Mai 2005
    Messages : 829
    Par défaut
    Dans l'éditeur graphique tu peux essayer de voir les properties de ta FORM1 si c'est elle qui contient cette image.
    [SIZE="2"]Dis moi qui tu suis, je te dirais qui je Hais!
    Heureux est l'étudiant, qui comme la rivière suit son cours sans sortir de son lit

    Mon premier Tutoriel


    A 80% des cas je résouts mon problème en rédigeant une nouvelle discussion, du coup je ne poste que 20% de mes problèmes...

  3. #3
    Membre confirmé
    Profil pro
    Inscrit en
    Avril 2005
    Messages
    200
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2005
    Messages : 200
    Par défaut
    salut,
    elle parait vide, je me demande si je ne m'y prends pas mal.
    en bas à droite il y a une fenetre Propriétés, je sélectionne le fichier en question dans l'Explorateur mais rien n'apparait...
    pas comprendre!

  4. #4
    Membre émérite
    Avatar de parp1
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    829
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : France, Calvados (Basse Normandie)

    Informations forums :
    Inscription : Mai 2005
    Messages : 829
    Par défaut
    Quelle version de Visual Studio as tu? Si ton appli est en VB5 je pense qu'il te faut Visual Studio 5.0

    Deja que VB6.0 n'est plus commercialisé... alors pour trouver une VB5.0... peut etre sur abandonWare....

    Tu peux nous fournir un appercu de ta form avec un imprime ecran.... stplé.

    Merci!
    [SIZE="2"]Dis moi qui tu suis, je te dirais qui je Hais!
    Heureux est l'étudiant, qui comme la rivière suit son cours sans sortir de son lit

    Mon premier Tutoriel


    A 80% des cas je résouts mon problème en rédigeant une nouvelle discussion, du coup je ne poste que 20% de mes problèmes...

  5. #5
    Membre confirmé
    Profil pro
    Inscrit en
    Avril 2005
    Messages
    200
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2005
    Messages : 200
    Par défaut
    c'est une version 6.0 ... ça explique peut-etre la chose!

    voici le code du Form1.frm
    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
    VERSION 5.00
    Begin VB.Form Form1 
       BorderStyle     =   1  'Fixed Single
       Caption         =   "xxxxxxxx - Oncologie"
       ClientHeight    =   5700
       ClientLeft      =   45
       ClientTop       =   330
       ClientWidth     =   7545
       Icon            =   "Form1.frx":0000
       LinkTopic       =   "Form1"
       MaxButton       =   0   'False
       MinButton       =   0   'False
       ScaleHeight     =   5700
       ScaleWidth      =   7545
       StartUpPosition =   3  'Windows Default
       Begin VB.PictureBox Picture1 
          BackColor       =   &H00FFC0C0&
          Height          =   5895
          Left            =   0
          Picture         =   "Form1.frx":0442
          ScaleHeight     =   5835
          ScaleWidth      =   7755
          TabIndex        =   0
          Top             =   0
          Width           =   7815
          Begin VB.TextBox txtResHasFord 
             Alignment       =   2  'Center
             BackColor       =   &H00C0FFFF&
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   9
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   405
             Left            =   960
             Locked          =   -1  'True
             TabIndex        =   22
             TabStop         =   0   'False
             Top             =   4530
             Width           =   2415
          End
          Begin VB.TextBox txtHasFord 
             Alignment       =   2  'Center
             BackColor       =   &H000080FF&
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   9.75
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             ForeColor       =   &H00000040&
             Height          =   360
             Left            =   2040
             Locked          =   -1  'True
             MaxLength       =   10
             TabIndex        =   21
             TabStop         =   0   'False
             Top             =   3720
             Width           =   1335
          End
          Begin VB.TextBox txtResSokal 
             Alignment       =   2  'Center
             BackColor       =   &H00C0FFFF&
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   9
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   405
             Left            =   4080
             Locked          =   -1  'True
             TabIndex        =   18
             TabStop         =   0   'False
             Top             =   4530
             Width           =   2415
          End
          Begin VB.TextBox txtSokal 
             Alignment       =   2  'Center
             BackColor       =   &H000080FF&
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   9.75
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             ForeColor       =   &H00000040&
             Height          =   375
             Left            =   5040
             Locked          =   -1  'True
             MaxLength       =   10
             TabIndex        =   17
             TabStop         =   0   'False
             Top             =   3720
             Width           =   1335
          End
          Begin VB.TextBox TxtSexe 
             Alignment       =   2  'Center
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   8.25
                Charset         =   0
                Weight          =   400
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   285
             Left            =   4080
             MaxLength       =   1
             TabIndex        =   8
             Text            =   "M"
             Top             =   3000
             Width           =   855
          End
          Begin VB.TextBox txtHema 
             Alignment       =   2  'Center
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   8.25
                Charset         =   0
                Weight          =   400
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   285
             Left            =   4080
             MaxLength       =   5
             TabIndex        =   7
             Text            =   "0"
             Top             =   2400
             Width           =   855
          End
          Begin VB.TextBox txtBaso 
             Alignment       =   2  'Center
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   8.25
                Charset         =   0
                Weight          =   400
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   285
             Left            =   2520
             MaxLength       =   5
             TabIndex        =   6
             Text            =   "0"
             Top             =   3000
             Width           =   855
          End
          Begin VB.TextBox txtEosi 
             Alignment       =   2  'Center
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   8.25
                Charset         =   0
                Weight          =   400
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   285
             Left            =   2520
             MaxLength       =   5
             TabIndex        =   5
             Text            =   "0"
             Top             =   2400
             Width           =   855
          End
          Begin VB.TextBox txtBlaste 
             Alignment       =   2  'Center
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   8.25
                Charset         =   0
                Weight          =   400
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   285
             Left            =   4080
             MaxLength       =   5
             TabIndex        =   4
             Text            =   "0"
             Top             =   1680
             Width           =   855
          End
          Begin VB.TextBox txtPlaquette 
             Alignment       =   2  'Center
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   8.25
                Charset         =   0
                Weight          =   400
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   285
             Left            =   4080
             MaxLength       =   5
             TabIndex        =   3
             Text            =   "0"
             Top             =   1320
             Width           =   855
          End
          Begin VB.TextBox txtTaille 
             Alignment       =   2  'Center
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   8.25
                Charset         =   0
                Weight          =   400
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   285
             Left            =   4080
             MaxLength       =   5
             TabIndex        =   2
             Text            =   "0"
             Top             =   960
             Width           =   855
          End
          Begin VB.TextBox txtAge 
             Alignment       =   2  'Center
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   8.25
                Charset         =   0
                Weight          =   400
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   285
             Left            =   4080
             MaxLength       =   5
             TabIndex        =   1
             Text            =   "0"
             Top             =   600
             Width           =   855
          End
          Begin VB.Label Label15 
             BackStyle       =   0  'Transparent
             Caption         =   "9"
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   8.25
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   255
             Left            =   3360
             TabIndex        =   28
             Top             =   1200
             Width           =   135
          End
          Begin VB.Label Label14 
             BackStyle       =   0  'Transparent
             Caption         =   "/L)"
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   11.25
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   255
             Left            =   3480
             TabIndex        =   27
             Top             =   1320
             Width           =   255
          End
          Begin VB.Label lblGo 
             Alignment       =   2  'Center
             BackStyle       =   0  'Transparent
             Caption         =   "Calculer"
             BeginProperty Font 
                Name            =   "MS Sans Serif"
                Size            =   8.25
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   795
             Left            =   6480
             TabIndex        =   26
             Top             =   4560
             Visible         =   0   'False
             Width           =   705
          End
          Begin VB.Label Label13 
             Alignment       =   2  'Center
             Appearance      =   0  'Flat
             BackColor       =   &H0080C0FF&
             BorderStyle     =   1  'Fixed Single
             Caption         =   "HASFORD / SOKAL"
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   15.75
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             ForeColor       =   &H80000008&
             Height          =   375
             Left            =   2040
             TabIndex        =   25
             Top             =   120
             Width           =   3375
          End
          Begin VB.Label Label11 
             BackStyle       =   0  'Transparent
             Caption         =   "HASFORD"
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   8.25
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   255
             Left            =   1080
             TabIndex        =   24
             Top             =   3840
             Width           =   855
          End
          Begin VB.Label Label9 
             BackStyle       =   0  'Transparent
             Caption         =   "Catégorie de risque"
             Height          =   255
             Left            =   1440
             TabIndex        =   23
             Top             =   4200
             Width           =   1455
          End
          Begin VB.Label Label12 
             BackStyle       =   0  'Transparent
             Caption         =   "SOKAL"
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   8.25
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   255
             Left            =   4080
             TabIndex        =   20
             Top             =   3840
             Width           =   615
          End
          Begin VB.Label Label10 
             BackStyle       =   0  'Transparent
             Caption         =   "Catégorie de risque"
             Height          =   255
             Left            =   4560
             TabIndex        =   19
             Top             =   4200
             Width           =   1455
          End
          Begin VB.Line Line5 
             BorderWidth     =   2
             X1              =   4080
             X2              =   7200
             Y1              =   3480
             Y2              =   3480
          End
          Begin VB.Line Line4 
             BorderWidth     =   2
             X1              =   240
             X2              =   3360
             Y1              =   3480
             Y2              =   3480
          End
          Begin VB.Line Line3 
             BorderWidth     =   2
             X1              =   4080
             X2              =   7200
             Y1              =   2160
             Y2              =   2160
          End
          Begin VB.Line Line2 
             BorderWidth     =   2
             X1              =   3720
             X2              =   3720
             Y1              =   2400
             Y2              =   4920
          End
          Begin VB.Label Label8 
             BackStyle       =   0  'Transparent
             Caption         =   "Sexe (M/F)"
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   11.25
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   375
             Left            =   5040
             TabIndex        =   16
             Top             =   3000
             Width           =   1695
          End
          Begin VB.Label Label7 
             BackStyle       =   0  'Transparent
             Caption         =   "Hématocrite (%)"
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   11.25
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   375
             Left            =   5040
             TabIndex        =   15
             Top             =   2400
             Width           =   1695
          End
          Begin VB.Label Label6 
             Alignment       =   1  'Right Justify
             BackStyle       =   0  'Transparent
             Caption         =   "Basophiles (%)"
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   11.25
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   375
             Left            =   480
             TabIndex        =   14
             Top             =   3000
             Width           =   1935
          End
          Begin VB.Label Label5 
             Alignment       =   1  'Right Justify
             BackStyle       =   0  'Transparent
             Caption         =   "Eosinophiles (%)"
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   11.25
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   375
             Left            =   480
             TabIndex        =   13
             Top             =   2400
             Width           =   1935
          End
          Begin VB.Line Line1 
             BorderWidth     =   2
             X1              =   240
             X2              =   3360
             Y1              =   2160
             Y2              =   2160
          End
          Begin VB.Label Label4 
             Alignment       =   1  'Right Justify
             BackStyle       =   0  'Transparent
             Caption         =   "Blastes (%)"
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   11.25
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   255
             Left            =   1440
             TabIndex        =   12
             Top             =   1680
             Width           =   2295
          End
          Begin VB.Label Label3 
             Alignment       =   1  'Right Justify
             BackStyle       =   0  'Transparent
             Caption         =   "Plaquettes (10"
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   11.25
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   255
             Left            =   1680
             TabIndex        =   11
             Top             =   1320
             Width           =   1695
          End
          Begin VB.Label Label2 
             Alignment       =   1  'Right Justify
             BackStyle       =   0  'Transparent
             Caption         =   "Taille de la rate (cm)"
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   11.25
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   255
             Left            =   1440
             TabIndex        =   10
             Top             =   960
             Width           =   2295
          End
          Begin VB.Label Label1 
             Alignment       =   1  'Right Justify
             BackStyle       =   0  'Transparent
             Caption         =   "Age"
             BeginProperty Font 
                Name            =   "Arial"
                Size            =   11.25
                Charset         =   0
                Weight          =   700
                Underline       =   0   'False
                Italic          =   0   'False
                Strikethrough   =   0   'False
             EndProperty
             Height          =   255
             Left            =   1920
             TabIndex        =   9
             Top             =   600
             Width           =   1815
          End
       End
    End
    Attribute VB_Name = "Form1"
    Attribute VB_GlobalNameSpace = False
    Attribute VB_Creatable = False
    Attribute VB_PredeclaredId = True
    Attribute VB_Exposed = False
     
    Private Age As Integer
    Private Taille As Integer
    Private Plaquette As Double
    Private Blaste As Integer
     
    Private Eosino As Integer
    Private Baso As Integer
    Private Hemato As Integer
    Private Sexe As Integer
     
    Private NbHasFord As Double
    Private NbSokal As Double
     
    Private Function blnAuMoisUnCalcul() As Boolean
        blnAuMoisUnCalcul = Not AllToZero()
    End Function
    ...
    plus l'image :
    merci par avance

  6. #6
    Membre Expert Avatar de OhMonBato
    Homme Profil pro
    Inscrit en
    Mars 2007
    Messages
    2 660
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Morbihan (Bretagne)

    Informations professionnelles :
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2007
    Messages : 2 660
    Par défaut
    si c'est juste ajouter une légende en bas, tu peux pas ajouter un Label ou une autre image plutot que de vouloir changer la picture qui contient tous les autres controles ?

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 13
    Dernier message: 23/06/2005, 10h56
  2. question de débutant sur les objets
    Par boucher_emilie dans le forum ASP
    Réponses: 3
    Dernier message: 06/08/2004, 10h51
  3. [MFC] Quelques questions de débutant...
    Par Sephi dans le forum MFC
    Réponses: 4
    Dernier message: 20/02/2004, 17h25
  4. Questions de débutant
    Par J-P-B dans le forum XMLRAD
    Réponses: 12
    Dernier message: 24/07/2003, 15h19
  5. [HyperFile] 2 questions de débutant
    Par khan dans le forum HyperFileSQL
    Réponses: 2
    Dernier message: 29/04/2002, 23h18

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