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

JavaScript Discussion :

Remplir une zone de texte par rapport à une checkbox


Sujet :

JavaScript

  1. #1
    Membre éprouvé
    Avatar de beegees
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2004
    Messages
    3 610
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2004
    Messages : 3 610
    Points : 1 277
    Points
    1 277
    Par défaut Remplir une zone de texte par rapport à une checkbox
    Bonjour tout le monde,

    J'ai un formulaire (cf: piece jointe) :

    Introduction à la pharmacognosie est une zone de texte remplie par la liste déroulante qui se trouve à côté.

    J'aimerais maintenant que par rapport à la valeur de la zone de texte (cette zone de texte se nomme CI1), quand on appuie sur le checkbox TH ou TP, ou EX qu'un nombre apparaîsse.

    Il serait différent par rapport au cours choisi.

    1. Le visiteur choisi un cours avec la liste déroulante, la zone de texte se remplie. (FAIT avec ce code javascript) : Merci à Hug0_76

    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
    <HEAD>
    <script type="text/javascript" language="javascript">
    function maj() {
    t = document.getElementById('CI1');
    s = document.getElementById('select4');
    t.value = s.options[s.selectedIndex].value;
    }
    
    
    	  <script language="javascript">
    	  s = document.getElementById('select4');
    	  val = s.selectedIndex.value;
    </script>
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    <script language="javascript">
    	  t = document.getElementById('textarea');
    t.value = val;
    </script>


    2. Quand le visiteur clic sur la checkbox Th
    Select case la valeur de Zone de texte (CI1)
    case Cours1
    5
    case Cours2
    3
    end select

    Pour cela j'ai ce code : merci à Pymm

    Dans <head> </head>

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    <script language="javascript">
    var tab_BIOLJ201=new Array
    tab_BIOLJ201["TH"]=0;
    tab_BIOLJ201["TP"]=0;
    tab_BIOLJ201["EX"]=0;
    </script>
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    <script language="javascript">
    function rempli_tab(){
    switch(document.getElementById('CI1').value{
    case 'Introduction botanique à la pharmacognosie...' :
    if(document.getElementById('cbCI1TH').checked{
    tab_BIOLJ201["TH"]=5;
    C'est ici que ça doit être incorrect
    ECTSCI1TH = tab_BIOLJ201["TH"];
    }else{
    tab_BIOLJ201["TH"]=0;
    }
    ici j'ai essayé d'ouvrir une fenêtre d'alerte pour connaître la valeur de la variable, mais ça ne fonctionne pas.
    alert ("la valeur de th est de " + tab_BIOLJ201["TH"]);
    </script>
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <input type="checkbox" name="cbCI1TH" value="checkbox" align="middle" onBlur="rempli_tab()" >
    Ce qui est important est que je devrai ensuite récupérer les données des zones de texte dans une base de données.

    Je n'ai malheureusement aucun résultat excepté la valeur de la liste déroulante qui se met bien dans la zone de texte nommée CI1.

    La checkbox s'appelle cbCI1TH.
    La zone de texte qui doit réceptionner la valeur de la checkbox par rapport au nom du cours s'appelle ECTSCI1TH.

    C'est quand je clique sur cette checkbox que la valeur de tab_BIOLJ201["TH"] n'apparaît pas.

    Merci d'avance pour votre aide.

    beegees

  2. #2
    Membre averti Avatar de Hug0_76
    Profil pro
    Inscrit en
    Août 2006
    Messages
    292
    Détails du profil
    Informations personnelles :
    Âge : 38
    Localisation : France

    Informations forums :
    Inscription : Août 2006
    Messages : 292
    Points : 332
    Points
    332
    Par défaut ?????
    Salut,

    Euh....je n'ai pas tout compris!
    En fait pour la selection du cours ca va mais après j'ai laché!
    Lorsque ton utilisateur va cliquer sur un checkbox tu veux que du texte apparaisse à coté de l'intitulé du cours c'est ca????
    Genre :

    Je choisi avec le <select> l'option BIOL-J-2001, ensuite dans la zone de texte à droite il s'affiche : Introduction Botanique à la pharma......
    puis lorsque que je choche une case tu veux qu'un chiffre appraisse à coté de
    Introduction Botanique à la pharma......????



    Ton case ne peux pas fonctionner, un case tu test soit un entier soit un caractère seul....

  3. #3
    Membre éprouvé
    Avatar de beegees
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2004
    Messages
    3 610
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2004
    Messages : 3 610
    Points : 1 277
    Points
    1 277
    Par défaut
    Salut Hug0_76,

    Merci pour ta réponse.

    Lorsque ton utilisateur va cliquer sur un checkbox tu veux que du texte apparaisse à coté de l'intitulé du cours c'est ca????
    Non, j'ai une zone de texte nommée ECTSCI1TH qui se trouve à côté de TH dans la collone ECTS (voir piece jointe de mon premier post ).

    Là où il y'a marqué ICI, quand je coche sur la checkbox, il faut vérifier le nom du cours et mettre le nombre d'ECTS correspondant.

    Qu'en penses-tu ?


    Merci pour ton dévouement.

    bgs

    Ps: ne tiens pas compte de la checbox checed (EX) c'est une erreur

  4. #4
    Expert confirmé
    Avatar de javatwister
    Homme Profil pro
    danseur
    Inscrit en
    Août 2003
    Messages
    3 681
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Calvados (Basse Normandie)

    Informations professionnelles :
    Activité : danseur

    Informations forums :
    Inscription : Août 2003
    Messages : 3 681
    Points : 5 221
    Points
    5 221
    Par défaut
    j'ai regardé une minute complète et je n'ai pas vu le mot "ICI";

  5. #5
    Membre averti Avatar de Hug0_76
    Profil pro
    Inscrit en
    Août 2006
    Messages
    292
    Détails du profil
    Informations personnelles :
    Âge : 38
    Localisation : France

    Informations forums :
    Inscription : Août 2006
    Messages : 292
    Points : 332
    Points
    332
    Par défaut Js
    Ok ok,

    bon déjà il te faut un tableau comme j'ai pu appercevoir dans ton premier post!

    Toutes les matières que tu as dans ton select possède un certain nombre de crédits ECTS??? C'est ca??

    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
    <script type="text/javascript" language="javascript">
    
    /** Tu créer un tableau de taille = nombre d'élément de ta balise <select>, 
    *    pour faciliter la mise à jour tu créer un tableau avec la taille courante de 
    *    ta balise <select> en récupérant le nombre d'éléments.
    */
    
    var s = document.getElementById('select4');
    var taille = s.length;
    
    var matiere = new Array(taille);
    
    /** Tableau correspondant aux crédits ECTS dans l'ordre par rapport à ta  
    *    balise <select>.
    *
    *    2 = nb de crédits pour la matière de ton premier <option>
    *    4 = nb de crédits pour la matière de ton deuxième<option>
    *    etc....
    */
    var credits = new Array(2,4,3,1,5,3,....);
    
    
    /** Fonction vu hier */
    function maj() {
    ...
    }
    
    /** Fonction qui va initialiser ton tableau matière,
    *    Tu vas utiliser un tableau indicer sur tes noms de matières,
    *    Exemple : 
    *        matiere['BIOL-J-201'] = credits[n];
    *    Ensuite tu utilises le tableau "credits" pour faire correspondre tes matières *    avec les crédits.    
     */
    function init() {
    i = 0;
    
       for(i = 0; i < taille; i++) {
               matiere[s.options[i].value] = credits[i];     
       }
    }
    
    }


    Maintenant lorsque que tu cliques sur un checkbox il ne te reste plus qu'a aller chercher dans ton tableau les crédits ECTS en fonction de ta matière.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    /** Fonction à placer à la suite de init() */
    
    function maj_checkbox() {
    i = document.getElementById('id_de_ton_input_text');
    s = document.getElementById('select4');
    i.value = matiere[s.options[s.selectedIndex].value];
    }

    Pour rendre actif tes checkbox tu fais :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <input type="checkbox" onClick="maj_checkbox()">
    voila voila en gros!
    Bon je ne sais pas si toutes mes syntaxe sont bonnes mais en tout cas ca devrait marcher à moins que j'ai fais une erreur d'algo!

  6. #6
    Membre éprouvé
    Avatar de beegees
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2004
    Messages
    3 610
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2004
    Messages : 3 610
    Points : 1 277
    Points
    1 277
    Par défaut
    Citation Envoyé par javatwister
    j'ai regardé une minute complète et je n'ai pas vu le mot "ICI";
    Un modérateur a édité mon message et n'a retenu que la première image, celle où il y'a le mot ici peut être vue via ce lien :

    http://164.15.112.38/ci2.jpg

    A bientôt
    bgs

  7. #7
    Membre éprouvé
    Avatar de beegees
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2004
    Messages
    3 610
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2004
    Messages : 3 610
    Points : 1 277
    Points
    1 277
    Par défaut
    Un super grand merci à toi Hug0_76,

    Je vais tester ce que tu m'as envoyé et je te recontacte.

    Encore un grand merci.

    bgs

  8. #8
    Membre averti Avatar de Hug0_76
    Profil pro
    Inscrit en
    Août 2006
    Messages
    292
    Détails du profil
    Informations personnelles :
    Âge : 38
    Localisation : France

    Informations forums :
    Inscription : Août 2006
    Messages : 292
    Points : 332
    Points
    332
    Par défaut
    envoi moi ton code pour que je test parce que ca me saoul de recréer un tableau comme le tiens avec tous tes select !
    Comme ca si ca ne marche pas je vais pouvoir tester et mieux t'expliquer parce que là c'est pas facile facile sans code pour tester!
    J'ai juste fais un tableau et puis une mise à jour mais je n'ai pas tout tester

  9. #9
    Membre éprouvé
    Avatar de beegees
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2004
    Messages
    3 610
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2004
    Messages : 3 610
    Points : 1 277
    Points
    1 277
    Par défaut
    Tu es super sympa, je t'envoi mon code via un MP.

    A tout de suite.

    bgs

  10. #10
    Membre averti Avatar de Hug0_76
    Profil pro
    Inscrit en
    Août 2006
    Messages
    292
    Détails du profil
    Informations personnelles :
    Âge : 38
    Localisation : France

    Informations forums :
    Inscription : Août 2006
    Messages : 292
    Points : 332
    Points
    332
    Par défaut
    je n'ai tjs rien recu beegees!
    Je ne sais pas si c'est normal!
    sinon met ta page sur ton serveur IIS et j'irai la récupéré ca ira plus vite

  11. #11
    Membre éprouvé
    Avatar de beegees
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2004
    Messages
    3 610
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2004
    Messages : 3 610
    Points : 1 277
    Points
    1 277
    Par défaut
    Tu peux récupérer le fichier via ce lien :





    c'est un fichier asp3

    Dis-moi si ça fonctionne.

    Merci !!!

    bgs

  12. #12
    Membre éprouvé
    Avatar de beegees
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2004
    Messages
    3 610
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2004
    Messages : 3 610
    Points : 1 277
    Points
    1 277
    Par défaut
    voici le code, ça sera plus simple :

    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
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html40/strict.dtd">
    <!-- Created from PDF via Acrobat SaveAsXML -->
    <!-- Mapping table version: 28-February-2003 -->
    <HTML>
    <HEAD>
    <script language="javascript">
    var s = document.getElementById('select4');
    var taille = s.length;
    var matiere = new Array(taille);
    var credits = new Array(2,4,3,1,5,3);
    </script>
    <script language="javascript">
    function init() {
    i = 0;
     
       for(i = 0; i < taille; i++) {
               matiere[s.options[i].value] = credits[i];     
       }
    }
     
    }</script>
    <script language ="javascript">
    function maj_checkbox() {
    i = document.getElementById('cbCI1TH');
    s = document.getElementById('select4');
    i.value = matiere[s.options[s.selectedIndex].value];
    }
    </script>
     
    <script type="text/javascript" language="javascript">
    function maj() {
    t = document.getElementById('CI1');
    s = document.getElementById('select4');
    t.value = s.options[s.selectedIndex].value;
    }
    </script>
     
    //<script language="javascript">
    //var tab_BIOLJ201=new Array
    //tab_BIOLJ201["TH"]=0;
    //tab_BIOLJ201["TP"]=0;
    //tab_BIOLJ201["EX"]=0;
    //</script>
    //
    //<script language="javascript">
    //function rempli_tab(){
    //switch(document.getElementById('CI1').value{
    //case 'Introduction botanique à la pharmacognosie...' :
    //if(document.getElementById('cbCI1TH').checked{
    //tab_BIOLJ201["TH"]=5;
    //ECTSCI1TH = tab_BIOLJ201["TH"];
    //}else{
    //tab_BIOLJ201["TH"]=0;
    //}
    //alert ("la valeur de th est de " + tab_BIOLJ201["TH"]);
    //</script>
     
    <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <STYLE type="text/css">
    IMG {
     text-align:center;
     vertical-align:top;
     margin-bottom:15px;
     margin-top:0px;
     margin-right:0px;
     margin-left:0px;
     direction:ltr
    }
    SPAN {
     font-family:'JEBFCG+Arial','Arial',sans-serif;
     font-size:10pt;
     font-style:normal;
     font-weight:normal
    }
    P {
     text-align:left;
     margin-bottom:0px;
     margin-top:0px;
     margin-right:0px;
     text-indent:0px;
     direction:ltr;
     line-height:16px
    }
    TABLE {
     border-width:thin;
     border-collapse:collapse;
     padding:3px;
     text-align:center;
     vertical-align:top;
     margin-bottom:7px;
     margin-top:0px;
     margin-right:0px;
     margin-left:0px;
     direction:ltr;
     width:auto;
     height:auto;
     display:table;
     float:none
    }
    TR {
     vertical-align:top;
     height:auto
    }
    TD { 
     text-align:left;
     vertical-align:middle
    }
    DIV[class="Part"] {
     text-align:left;
     margin-bottom:0px;
     margin-top:0px;
     margin-right:0px;
     text-indent:0px;
     direction:ltr
    }
    H5 {
     text-align:left;
     margin-bottom:0px;
     margin-top:0px;
     margin-right:0px;
     text-indent:0px;
     direction:ltr;
     line-height:16px
    }
    TH {
     text-align:left;
     vertical-align:middle
    }
    </STYLE>
    <META
     name="dc.creator"
     content="chenschel" >
    <META
     name="dc.title"
     content="Microsoft Word - FormCoursIsol.s_06.doc" >
    <META
     name="dc.date"
     content="2006-03-28T11:57:37Z" >
    <META
     name="dc.date.modified"
     content="2006-08-25T17:42:40+02:00" >
    <META
     name="generator"
     content="Adobe Acrobat Exchange-Pro 7.8" >
    </HEAD>
    <BODY bgcolor=white text=black link=blue vlink=purple alink=fushia >
     
     
    <P>&nbsp;</P>
    <form name="form1" method="post" action="">
      <p>&nbsp;</p>
      <p><SPAN style="color:#000000"
    >Ce bulletin est à compléter en IMPRIME et remettre </SPAN
    ><SPAN style="font-family:'serif', 'Times New Roman', serif; color:#000000"
    >-</SPAN
    ><SPAN style="color:#000000"
    >Bisseurs autorisés à suivre des cours isolés de l'année suivante de leur cursus : Secrétariat de la faculté </SPAN
    ><SPAN style="font-family:'serif', 'Times New Roman', serif; color:#000000"
    >-</SPAN
    ><SPAN style="color:#000000"
    >Autres étudiants : Service des inscriptions, Cellule &quot;Etudes Libres&quot;, Porte Orange, S.4.207; veuillez vous munir de </SPAN
    ></p>
      <P style="margin-bottom:8px; margin-left:19px; line-height:16px"> <SPAN style="color:#000000"
    >2 photos + copie de la carte d'identité si vous n’étiez pas inscrit. </SPAN
    ></P>
      <P style="margin-bottom:8px"> <SPAN style="font-family:'sans-serif'; font-weight:bold; color:#000000; text-decoration:underline"
    >1.</SPAN
    ><SPAN style="font-family:'sans-serif'; font-weight:bold; color:#000000; text-decoration:underline"
    > A REMPLIR PAR L’ETUDIANT </SPAN
    ></P>
      <P style="margin-bottom:15px; margin-right:11px; line-height:23px"> <SPAN style="color:#000000"
    >Nom : </SPAN
    >
          <input name="textfield" type="text" size="56">
          <SPAN style="color:#000000"
    >Prénom : </SPAN
    ><SPAN style=" font-weight:normal"
    >
          <input name="textfield2" type="text" size="56">
          <BR>
          </SPAN
    ><SPAN style="color:#000000"
    >Date de naissance :
            <select name="select">
            <option>01</option>
            <option>02</option>
            <option>03</option>
            <option>04</option>
            <option>05</option>
            <option>06</option>
            <option>07</option>
            <option>08</option>
            <option>09</option>
            <option>10</option>
            <option>11</option>
            <option>12</option>
            <option>13</option>
            <option>14</option>
            <option>15</option>
            <option>16</option>
            <option>17</option>
            <option>18</option>
            <option>19</option>
            <option>20</option>
            <option>21</option>
            <option>22</option>
            <option>23</option>
            <option>24</option>
            <option>25</option>
            <option>26</option>
            <option>27</option>
            <option>28</option>
            <option>29</option>
            <option>30</option>
            <option>31</option>
          </select>
            /
      <select name="select2">
        <option>1</option>
        <option>2</option>
        <option>3</option>
        <option>4</option>
        <option>5</option>
        <option>6</option>
        <option>7</option>
        <option>8</option>
        <option>9</option>
        <option>10</option>
        <option>11</option>
        <option>12</option>
      </select>
            /
      <input name="textfield5" type="text" value="19" size="4">
            Lieu de naissance :
      <input type="text" name="textfield6">
            Pays :</SPAN
    ><SPAN style=" font-weight:normal"
    >
      <input type="text" name="textfield7">
      <BR>
      </SPAN
    ><SPAN style="color:#000000"
    >Nationalité :
      <input type="text" name="textfield3"> 
      Sexe : </SPAN
    >
      <input type="radio" name="radiobutton" value="radiobutton">
      <SPAN style="color:#000000"
    > F </SPAN
    ><SPAN style="color:#000000"
    > 
      <input type="radio" name="radiobutton" value="radiobutton">
      M Etat civil : </SPAN
    >
      <input type="radio" name="radiobutton" value="radiobutton">
      <SPAN style="color:#000000"
    > célibataire </SPAN
    >
      <input type="radio" name="radiobutton" value="radiobutton">
      <SPAN style="color:#000000"
    > marié </SPAN
    >
      <input type="radio" name="radiobutton" value="radiobutton">
      <SPAN style="color:#000000"
    > divorcé </SPAN
    >
      <input type="radio" name="radiobutton" value="radiobutton">
      <SPAN style="color:#000000"
    > veu</SPAN
    ><SPAN style=" font-weight:normal"
    >f <BR>
      </SPAN
    ><SPAN style="color:#000000"
    >Si « </SPAN
    ><SPAN style="font-family:'sans-serif'; color:#000000"
    >marié </SPAN
    ><SPAN style="color:#000000"
    >» indiquez le nom du conjoint : 
      <input type="text" name="textfield4">
      et sa nationalité : </SPAN
    ><SPAN style=" font-weight:normal"
    >
    1ère partie

  13. #13
    Membre éprouvé
    Avatar de beegees
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2004
    Messages
    3 610
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2004
    Messages : 3 610
    Points : 1 277
    Points
    1 277
    Par défaut
    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
     
    <input type="text" name="textfield8">
      <BR>
      </SPAN
    ><SPAN style="color:#000000; text-decoration:underline"
    >Adresse de correspondance<BR>
      </SPAN
    ><SPAN style="color:#000000"
    >Rue 
      <input name="textfield9" type="text" size="120"> 
      n° 
      <input name="textfield10" type="text" size="5"> 
      Boîte 
      <input name="textfield11" type="text" size="6">
      </SPAN
    ><SPAN style=" font-weight:normal"
    ><BR>
    </SPAN
    ><SPAN style="color:#000000"
    >Code postal :
    <input name="textfield12" type="text" size="8"> 
    Ville
    <input name="textfield13" type="text" size="50"> 
    Téléphone :</SPAN
    >
    <input name="textfield14" type="text" size="40">
      </P>
      <P style="margin-bottom:15px; margin-right:11px; line-height:23px"><SPAN style="color:#000000"
    >Email : </SPAN
    ><SPAN style=" font-weight:normal"
    >
        <input name="textfield15" type="text" size="120">
        <BR>
      </SPAN
    ><SPAN style="color:#000000; text-decoration:underline"
    >Cours souhaités<BR>
      </SPAN
    ></P>
      <table align="center">
        <tr>
          <td style="width:76px; height:32px; border-style:solid; border-color:#000000; border-width:1px"><span style="color:#000000"
    >Faculté </span
    ></td>
          <td style="width:114px; height:32px; border-style:solid; border-color:#000000; border-width:1px"><span style="color:#000000"
    >Mnémonique </span
    ></td>
          <td style="width:282px; height:32px; border-style:solid; border-color:#000000; border-width:1px"><span style="color:#000000"
    >Intitulé du cours </span
    ></td>
          <td style="width:60px; height:32px; border-style:solid; border-color:#000000; border-width:1px"><div align="center"><strong>TH</strong></div></td>
          <td style="width:60px; height:32px; border-style:solid; border-color:#000000; border-width:1px"><div align="center"><strong>ECTS</strong></div></td>
          <td style="width:60px; height:32px; border-style:solid; border-color:#000000; border-width:1px"><div align="center"><strong>TP</strong></div></td>
          <td style="width:60px; height:32px; border-style:solid; border-color:#000000; border-width:1px"><div align="center"><strong>ECTS</strong></div></td>
          <td style="width:60px; height:32px; border-style:solid; border-color:#000000; border-width:1px"><div align="center"><strong>EX</strong></div></td>
          <td style="width:60px; height:32px; border-style:solid; border-color:#000000; border-width:1px"><div align="center"><strong>ECTS</strong></div></td>
          <td style="width:60px; height:32px; border-style:solid; border-color:#000000; border-width:1px"><div align="center"><span style="font-size:10pt; color:#000000"
    >ECTS (14 max.) </span
    ></div></td>
          <td style="vertical-align:top; width:170px; height:32px; border-style:solid; border-color:#000000; border-width:1px"><span style="color:#000000"
    >Signature du Professeur pour accord </span
    ></td>
        </tr>
        <tr>
          <td style="vertical-align:top; width:76px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>
     
          <div align="center">      
          <td style="vertical-align:top; width:114px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>
     
    	  <select id="select4" onChange="maj()">
            <option selected> </option>
            <option value="Introduction botanique à la pharmacognosie...">BIOL-J-201</option>
            <option>BIOL-J-301</option>
     
            <option value="Biologie moléculaire et cellulaire">BMOL-J-201</option>
            <option value="Biochimie générale et humaine">BMOL-J-202</option>
            <option value="Chimie organique">CHIM-J-201</option>
            <option value="Pratique de l'outil informatique">INFO-J-201</option>
     
            <option value="Physiologie et anatomie humaines">MEDI-J-201</option>
            <option>MEDI-J-301</option>
     
            <option value="Analyse pharmaceutique : méthodes physico-chimiques...">PHAR-J-201</option>
            <option value="Analyse pharmaceutique : méthodes spectroscopiques">PHAR-J-202</option>
            <option>PHAR-J-301</option>
            <option>PHAR-J-302</option>
            <option>PHAR-J-303</option>
            <option>PHAR-J-304</option>
            <option>PHAR-J-305</option>
     
    		<option value="Biostatistique">STAT-J-201</option>
            <option value="Projet transdisciplinaire en sciences du vivant">TRAN-J-201</option>
            <option value="Projet transdisciplinaire en analyse spectrale">TRAN-J-202</option>
            <option>TRAN-J-301</option>
            <option>TRAN-J-302</option>
     
     
     
          </select> </div>     <span style="vertical-align:top; width:76px; height:23px; border-style:solid; border-color:#000000; border-width:1px">
     
          </span>
    	  <script language="javascript">
    	  s = document.getElementById('select4');
    	  val = s.selectedIndex.value;
    </script>
     
          <td style="vertical-align:top; width:282px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>
     
     
    	  <input id="CI1" type="text" size="50">  
    	  <script language="javascript">
    	  t = document.getElementById('textarea');
    t.value = val;
    </script>
     
          <td align="center" valign="middle" style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>
    	  <div align="center">
    	   <input type="checkbox" name="cbCI1TH" id="cbCI1TH" value="checkbox" align="middle" onClick="maj_checkbox()"> > 
     
      </div>
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/><input name="ECTSCI1TH" type="text" value="" size="5">
          <div align="center"></div>      
          <div align="center">
          </div>
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/><div align="center">
            <input type="checkbox" name="checkbox2" value="checkbox">
          </div>  
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
     
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/><div align="center">
            <input type="checkbox" name="checkbox5" value="checkbox">
          </div>      
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
     
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  <div align="center"></div>
          <td style="vertical-align:top; width:170px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
        </tr>
        <tr>
          <td style="vertical-align:top; width:76px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>
          <td style="vertical-align:top; width:114px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/><select name="select5" size="1">
           <option selected> </option>
            <option>BIOL-J-201</option>
            <option>BIOL-J-301</option>
     
            <option>BMOL-J-201</option>
            <option>BMOL-J-202</option>
            <option>CHIM-J-201</option>
            <option>INFO-J-201</option>
     
            <option>MEDI-J-201</option>
            <option>MEDI-J-301</option>
     
            <option>PHAR-J-201</option>
            <option>PHAR-J-202</option>
            <option>PHAR-J-301</option>
            <option>PHAR-J-302</option>
            <option>PHAR-J-303</option>
            <option>PHAR-J-304</option>
            <option>PHAR-J-305</option>
     
    		<option>STAT-J-201</option>
            <option>TRAN-J-201</option>
            <option>TRAN-J-202</option>
            <option>TRAN-J-301</option>
            <option>TRAN-J-302</option>
          </select>  
          <td style="vertical-align:top; width:282px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>
    	  <label> </label>
     
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/><div align="center">
            <input type="checkbox" name="checkbox5" value="checkbox">
          </div>  
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
     
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      <div align="center">
            <input type="checkbox" name="checkbox6" value="checkbox">
          </div>
     
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      <div align="center">
            <input type="checkbox" name="checkbox10" value="checkbox">
          </div>
     
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  <div align="center"></div>
          <td style="vertical-align:top; width:170px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
        </tr>
        <tr>
          <td style="vertical-align:top; width:76px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>
          <td style="vertical-align:top; width:114px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/><select name="select6" size="1">
    	  <option selected> </option>
            <option>BIOL-J-201</option>
            <option>BIOL-J-301</option>
     
            <option>BMOL-J-201</option>
            <option>BMOL-J-202</option>
            <option>CHIM-J-201</option>
            <option>INFO-J-201</option>
     
            <option>MEDI-J-201</option>
            <option>MEDI-J-301</option>
     
            <option>PHAR-J-201</option>
            <option>PHAR-J-202</option>
            <option>PHAR-J-301</option>
            <option>PHAR-J-302</option>
            <option>PHAR-J-303</option>
            <option>PHAR-J-304</option>
            <option>PHAR-J-305</option>
     
    		<option>STAT-J-201</option>
            <option>TRAN-J-201</option>
            <option>TRAN-J-202</option>
            <option>TRAN-J-301</option>
            <option>TRAN-J-302</option>
          </select>  
          <td style="vertical-align:top; width:282px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      <div align="center">
            <input type="checkbox" name="checkbox3" value="checkbox">
          </div>
     
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      <div align="center">
            <input type="checkbox" name="checkbox7" value="checkbox">
          </div>
     
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      <div align="center">
            <input type="checkbox" name="checkbox11" value="checkbox">
          </div>
     
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  <div align="center"></div>
          <td style="vertical-align:top; width:170px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
        </tr>
        <tr>
          <td style="vertical-align:top; width:76px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>
          <td style="vertical-align:top; width:114px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/><select name="select7" size="1">
    	  <option selected> </option>
            <option>BIOL-J-201</option>
            <option>BIOL-J-301</option>
     
            <option>BMOL-J-201</option>
            <option>BMOL-J-202</option>
            <option>CHIM-J-201</option>
            <option>INFO-J-201</option>
     
            <option>MEDI-J-201</option>
            <option>MEDI-J-301</option>
     
            <option>PHAR-J-201</option>
            <option>PHAR-J-202</option>
            <option>PHAR-J-301</option>
            <option>PHAR-J-302</option>
            <option>PHAR-J-303</option>
            <option>PHAR-J-304</option>
            <option>PHAR-J-305</option>
     
    		<option>STAT-J-201</option>
            <option>TRAN-J-201</option>
            <option>TRAN-J-202</option>
            <option>TRAN-J-301</option>
            <option>TRAN-J-302</option>
          </select>  
          <td style="vertical-align:top; width:282px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      <div align="center">
            <input type="checkbox" name="checkbox4" value="checkbox">
          </div>
     
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/><div align="center">
            <input type="checkbox" name="checkbox8" value="checkbox">
          </div>  
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
     
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/><div align="center">
            <input type="checkbox" name="checkbox12" value="checkbox">
          </div>      
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
     
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  <div align="center"></div>
          <td style="vertical-align:top; width:170px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
        </tr>
        <tr>
          <td style="width:76px; height:23px; border-style:solid; border-color:#000000; border-width:1px"><span style="color:#000000"
    >TOTAL </span
    ></td>
          <td style="vertical-align:top; width:114px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
          <td style="vertical-align:top; width:282px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>      
          <td style="vertical-align:top; width:60px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  <div align="center"></div>
          <td style="vertical-align:top; width:170px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
        </tr>
      </table>
      <P> <SPAN style="color:#000000"
    >Souhaitez-vous présenter l'examen ? </SPAN
    >
        <input type="radio" name="radiobutton" value="radiobutton">
        <SPAN style="color:#000000"
    > OUI </SPAN
    >
        <input type="radio" name="radiobutton" value="radiobutton">
        <SPAN style="color:#000000"
    > NON </SPAN
    ><br>
      </P>
      <P> <SPAN style="font-family:'sans-serif'; font-weight:bold; color:#000000"
    >Sauf dérogation de la faculté</SPAN
    ><SPAN style="color:#000000"
    >, l'inscription aux exercices et travaux pratiques n'est pas autorisée. </SPAN
    ></P>
      <DIV class="Part"
    >
        <H5> <SPAN style="font-family:'sans-serif'; font-weight:bold; color:#000000"
    ><br>
        Attention </SPAN
    ></H5>
        <P> <SPAN style="font-family:'serif', 'Times New Roman', serif; color:#000000"
    ><br>
        -</SPAN
    ><SPAN style="color:#000000"
    >L'inscription à des cours isolés ne donne pas octroi à permis de séjour en Belgique. </SPAN
    ></P>
        <P> <SPAN style="font-family:'serif', 'Times New Roman', serif; color:#000000"
    >-</SPAN
    ><SPAN style="color:#000000"
    >Il n'y a jamais remboursement des droits d'inscription payés pour des cours isolés. </SPAN
    ></P>
        <P style="margin-left:19px; text-indent:-18px"> <SPAN style="font-family:'serif', 'Times New Roman', serif; color:#000000"
    >-</SPAN
    ><SPAN style="color:#000000"
    >L'inscription n'est effective qu'après paiement des droits d'inscription, dans les 8 jours du dépôt de ce formulaire auprès du service des inscriptions; la fréquentation des cours n'est pas autorisée tant que l'inscription n'est pas effective. </SPAN
    ></P>
        <P style="margin-bottom:15px; margin-right:32px; margin-left:19px; text-indent:-18px; line-height:15px"> <SPAN style="font-family:'serif', 'Times New Roman', serif; color:#000000"
    >-</SPAN
    ><SPAN style="color:#000000"
    >En signant ce formulaire, vous marquez votre accord pour le respect de la Charte &quot;INTERNET&quot;.</SPAN
    ></P>
        <P style="margin-bottom:23px">&nbsp;</P>
      </DIV>
    </form>
      <DIV class="Part"
    >
        <P style="margin-bottom:23px"><SPAN style="color:#000000"
    >Date : .................................. Signature de l'étudiant : <BR>
        </SPAN
    ></P>
        <P style="margin-bottom:23px"> <SPAN style="font-family:'sans-serif'; font-weight:bold; color:#000000; text-decoration:underline"
    >2.</SPAN
    ><SPAN style="font-family:'sans-serif'; font-weight:bold; color:#000000; text-decoration:underline"
    > A REMPLIR PAR LA FACULTÉ </SPAN
    ></P>
        <TABLE style="margin-bottom:0px">
          <TR>
            <TH style="width:190px; height:32px; border-style:solid; border-color:#000000; border-width:1px"> <SPAN style="color:#000000"
    >Accord de la Faculté </SPAN
    ></TH>
            <TD style="text-align:center; width:114px; height:32px; border-style:solid; border-color:#000000; border-width:1px"><SPAN style="color:#000000"
    >Mnémonique </SPAN
    ></TD>
            <TD style="text-align:center; width:200px; height:32px; border-style:solid; border-color:#000000; border-width:1px"><SPAN style="color:#000000"
    >Dérogation pour exercices</SPAN
    ><SPAN style="font-size:6.4pt; color:#000000"
    >1 </SPAN
    ></TD>
            <TD style="text-align:center; vertical-align:top; width:201px; height:32px; border-style:solid; border-color:#000000; border-width:1px"><SPAN style="color:#000000"
    >Dérogation pour travaux pratiques </SPAN
    ><SPAN style="font-size:6.4pt; color:#000000"
    >1 </SPAN
    ></TD>
          </TR>
          <TR>
            <TH style="vertical-align:top; width:190px; height:23px; border-style: solid solid none solid; border-color: #000000; border-width:1px 1px 1px 1px"/>  
            <TD style="text-align:center; vertical-align:top; width:114px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
            <TD style="text-align:center; width:200px; height:23px; border-style:solid; border-color:#000000; border-width:1px"><SPAN style="color:#000000"
    >OUI - NON </SPAN
    ></TD>
            <TD style="text-align:center; width:201px; height:23px; border-style:solid; border-color:#000000; border-width:1px"><SPAN style="color:#000000"
    >OUI – NON </SPAN
    ></TD>
          </TR>
          <TR>
            <TH rowspan=3 style="vertical-align:top; width:190px; height:68px; border-style: none solid solid solid; border-color: #000000; border-width:1px 1px 1px 1px"> <SPAN style="font-family:'sans-serif'; color:#000000"
    >Visa et sceau </SPAN
    ></TH>
            <TD style="text-align:center; vertical-align:top; width:114px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
            <TD style="text-align:center; width:200px; height:23px; border-style:solid; border-color:#000000; border-width:1px"><SPAN style="color:#000000"
    >OUI – NON </SPAN
    ></TD>
            <TD style="text-align:center; width:201px; height:23px; border-style:solid; border-color:#000000; border-width:1px"><SPAN style="color:#000000"
    >OUI – NON </SPAN
    ></TD>
          </TR>
          <TR>
            <TD style="vertical-align:top; width:114px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
            <TD style="text-align:center; width:200px; height:23px; border-style:solid; border-color:#000000; border-width:1px"><SPAN style="color:#000000"
    >OUI – NON </SPAN
    ></TD>
            <TD style="text-align:center; width:201px; height:23px; border-style:solid; border-color:#000000; border-width:1px"><SPAN style="color:#000000"
    >OUI – NON </SPAN
    ></TD>
          </TR>
          <TR>
            <TD style="vertical-align:top; width:114px; height:23px; border-style:solid; border-color:#000000; border-width:1px"/>  
            <TD style="text-align:center; width:200px; height:23px; border-style:solid; border-color:#000000; border-width:1px"><SPAN style="color:#000000"
    >OUI – NON </SPAN
    ></TD>
            <TD style="text-align:center; width:201px; height:23px; border-style:solid; border-color:#000000; border-width:1px"><SPAN style="color:#000000"
    >OUI – NON </SPAN
    ></TD>
          </TR>
        </TABLE>
        <P style="margin-bottom:18px; line-height:23px"> <SPAN style="color:#000000"
    >Il s'agit d'un étudiant bisseur : </SPAN
    >
            <input name="radiobutton" type="radio" value="radiobutton">
            <SPAN style="color:#000000"
    > OUI </SPAN
    >
            <input type="radio" name="radiobutton" value="radiobutton">
            <SPAN style="color:#000000"
    > NON Les cours choisis sont des cours de l'année d'études succédant à l'année bissée ? </SPAN
    >
            <input type="radio" name="radiobutton" value="radiobutton">
            <SPAN style="color:#000000"
    > OUI </SPAN
    >
            <input type="radio" name="radiobutton" value="radiobutton">
            <SPAN style="color:#000000"
    > NON </SPAN
    ></P>
        <P style="margin-left:12px; line-height:23px">---------------------- </P>
        <P style="margin-left:12px; line-height:23px"><SPAN style="color:#000000"
    >Biffer la mention inutile </SPAN
    ></P>
      </DIV>
      <p></p>
      <P style="margin-bottom:15px; margin-right:11px; line-height:23px">&nbsp;</P>
    </BODY>
    </HTML>
    Suite et fin du code, merci.

  14. #14
    Membre averti Avatar de Hug0_76
    Profil pro
    Inscrit en
    Août 2006
    Messages
    292
    Détails du profil
    Informations personnelles :
    Âge : 38
    Localisation : France

    Informations forums :
    Inscription : Août 2006
    Messages : 292
    Points : 332
    Points
    332
    Par défaut
    je regarde ca tout de suite et je te répond

  15. #15
    Membre éprouvé
    Avatar de beegees
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2004
    Messages
    3 610
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2004
    Messages : 3 610
    Points : 1 277
    Points
    1 277
    Par défaut
    Merci, tu es super sympa

  16. #16
    Membre éprouvé
    Avatar de beegees
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2004
    Messages
    3 610
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2004
    Messages : 3 610
    Points : 1 277
    Points
    1 277
    Par défaut
    Citation Envoyé par Hug0_76
    Ok ok,

    Toutes les matières que tu as dans ton select possède un certain nombre de crédits ECTS??? C'est ca??
    Oui exactement, chaque matière à un nombre de crédit et chaque matière peut être du TH, du TP ou EX.

    BAT.

    beegees

  17. #17
    Membre averti Avatar de Hug0_76
    Profil pro
    Inscrit en
    Août 2006
    Messages
    292
    Détails du profil
    Informations personnelles :
    Âge : 38
    Localisation : France

    Informations forums :
    Inscription : Août 2006
    Messages : 292
    Points : 332
    Points
    332
    Par défaut
    Bon j'ai regardé ton code, et c'est un peu plus compliqué que prévu!

    En fait dans ton <select> tu mes en value, le nom d'une matière mais cela ne va pas être réutilisable correctement!
    Je t'expliquerai tout dans la page que je vais t'envoyer!

  18. #18
    Membre éprouvé
    Avatar de beegees
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2004
    Messages
    3 610
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2004
    Messages : 3 610
    Points : 1 277
    Points
    1 277
    Par défaut
    OK merci pour ton dévouement.

    Après tu m'enverras ton adresse pour la boîte de chocolat.

    bgs

  19. #19
    Membre averti Avatar de Hug0_76
    Profil pro
    Inscrit en
    Août 2006
    Messages
    292
    Détails du profil
    Informations personnelles :
    Âge : 38
    Localisation : France

    Informations forums :
    Inscription : Août 2006
    Messages : 292
    Points : 332
    Points
    332
    Par défaut
    t là???
    bon voila c fait!
    en fait j'ai fais un peu différemment de ce que je t'ai dis tout à l'heure car je n'avais pas tout compris!
    je t'envoi le code par MP mais par contre je t'expliquerai plus tard car je dois y aller!
    OK????
    En fait le code est ici :p


    Je reviens dans qqs heures!
    Au pire reviens ce soir et je t'aurais expliqué sur ton post!
    voila!
    bon courage!
    A+
    Fichiers attachés Fichiers attachés

  20. #20
    Membre éprouvé
    Avatar de beegees
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mars 2004
    Messages
    3 610
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mars 2004
    Messages : 3 610
    Points : 1 277
    Points
    1 277
    Par défaut
    Merci pour la page.

    Je l'ai testée et à première vue, quand je clic sur une checkbox, rien ne se passe.

    Je dois m'en aller mais on voit cela demain.

    Un super grand merci à toi.

    Bonne soirée.

    bgs

+ Répondre à la discussion
Cette discussion est résolue.
Page 1 sur 3 123 DernièreDernière

Discussions similaires

  1. Réponses: 18
    Dernier message: 24/01/2010, 07h40
  2. Effacer une zone de text par l'intermediaire d'un bouton
    Par claire_cartier dans le forum GTK+ avec C & C++
    Réponses: 25
    Dernier message: 18/04/2007, 15h59
  3. Redimensioner photo par rapport à une zone
    Par alyphe dans le forum VB.NET
    Réponses: 3
    Dernier message: 03/03/2007, 17h44
  4. Réponses: 2
    Dernier message: 05/06/2006, 17h51
  5. Réponses: 9
    Dernier message: 26/04/2004, 21h51

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