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.NET Discussion :

Bloquer saisie textbox


Sujet :

VB.NET

  1. #1
    Membre confirmé
    Inscrit en
    Mai 2006
    Messages
    93
    Détails du profil
    Informations forums :
    Inscription : Mai 2006
    Messages : 93
    Par défaut Bloquer saisie textbox
    Bonjour à tous,
    Voila, je développe actuellement en vb.net et j'aimerai bloquer la saisie d'une textbox (sans griser) pour un affichage.

    J'ai déjà trouver un code sur internet, mais je comprend pas pourquoi cela ne marche pas,alors que chez d'autre ça marche :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
     
     
     ' Ajoutez KeyAscii = 0 dans l'évenement KeyPress
     ' de la Textbox
     
     Private Sub Text1_KeyPress(KeyAscii As Integer)
            KeyAscii = 0
     End Sub
    Voila, si quelqu'un sait ce qu'il se passe, ou aurait une autre idée, je prend !

    Merci bcp d'avance, car cela est assez précé, merci !!


    Jedi186

  2. #2
    Rédacteur
    Avatar de SaumonAgile
    Homme Profil pro
    Team leader
    Inscrit en
    Avril 2007
    Messages
    4 028
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Moselle (Lorraine)

    Informations professionnelles :
    Activité : Team leader
    Secteur : Conseil

    Informations forums :
    Inscription : Avril 2007
    Messages : 4 028
    Par défaut
    Tu peux faire une recherche dans le forum concernant la gestion des saisies dans un textbox. Toutes les semaines, quelqu'un demande comment n'autoriser que les chiffres dans la saisie. Pour toi c'est le même principe, sauf que tu bloques tous les caractères.
    Bonne recherche.

    Remarque : tu devrais vraiment faire un effort d'orthographe et de grammaire, ça ne donne pas du tout envie de t'aider...
    Besoin d'un MessageBox amélioré ? InformationBox pour .NET 1.1, 2.0, 3.0, 3.5, 4.0 sous license Apache 2.0.

    Bonnes pratiques pour les accès aux données
    Débogage efficace en .NET
    LINQ to Objects : l'envers du décor

    Mon profil LinkedIn - MCT - MCPD WinForms - MCTS Applications Distribuées - MCTS WCF - MCTS WCF 4.0 - MCTS SQL Server 2008, Database Development - Mon blog - Twitter

  3. #3
    Membre émérite Avatar de zeavan
    Architect
    Inscrit en
    Avril 2003
    Messages
    590
    Détails du profil
    Informations personnelles :
    Âge : 49
    Localisation : Autre

    Informations professionnelles :
    Activité : Architect

    Informations forums :
    Inscription : Avril 2003
    Messages : 590
    Par défaut
    A la plus part des controles de saisie (TextBox en fait partie), tu as une propriete: ReadOnly qui par defaut est a false, il ne te reste qu'a la mettre a true pour repondre a ta question.

  4. #4
    Membre Expert
    Avatar de Aspic
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2005
    Messages
    3 905
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Hauts de Seine (Île de France)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Août 2005
    Messages : 3 905
    Par défaut
    Citation Envoyé par zeavan
    A la plus part des controles de saisie (TextBox en fait partie), tu as une propriete: ReadOnly qui par defaut est a false, il ne te reste qu'a la mettre a true pour repondre a ta question.
    C'est pas ce qu'il demande car il ne veux pas que sa textbox soit grisée :
    Voila, je développe actuellement en vb.net et j'aimerai bloquer la saisie d'une textbox (sans griser) pour un affichage.
    Sinon il faut bosser avec les evenements KeyPress, KeyDown... sur le forum y'a plein de source dessus !
    Qui ne tente rien n'a rien !
    Ce qui ne nous tue pas nous rends plus fort !!
    Mon projet ZELDA en C++/Allegro
    http://www.tutoworld.com - Le Forum -
    Mes ressources Dotnet (cours, sources, tutos)
    --------------------------------------------
    + + =

    Ne pas oublier le Tag !

  5. #5
    Membre éclairé
    Inscrit en
    Août 2006
    Messages
    381
    Détails du profil
    Informations forums :
    Inscription : Août 2006
    Messages : 381
    Par défaut
    Bonjour,

    quand tu mets la propriété ReadOnly d'un TextBox à true, par défaut, le designer de VS grise le contrôle. Si tu ne souhaites pas que celui-ci soit grisé, tu modifies la couleur manuellement en mettant blanc par exemple.

    Bye

  6. #6
    Membre Expert
    Avatar de Aspic
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2005
    Messages
    3 905
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Hauts de Seine (Île de France)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Août 2005
    Messages : 3 905
    Par défaut
    Citation Envoyé par Pilloutou
    Bonjour,

    quand tu mets la propriété ReadOnly d'un TextBox à true, par défaut, le designer de VS grise le contrôle. Si tu ne souhaites pas que celui-ci soit grisé, tu modifies la couleur manuellement en mettant blanc par exemple.

    Bye
    Lol t'es sur que ca marche ca ?
    Qui ne tente rien n'a rien !
    Ce qui ne nous tue pas nous rends plus fort !!
    Mon projet ZELDA en C++/Allegro
    http://www.tutoworld.com - Le Forum -
    Mes ressources Dotnet (cours, sources, tutos)
    --------------------------------------------
    + + =

    Ne pas oublier le Tag !

  7. #7
    Rédacteur
    Avatar de The_badger_man
    Profil pro
    Développeur .NET
    Inscrit en
    Janvier 2005
    Messages
    2 745
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : France, Yvelines (Île de France)

    Informations professionnelles :
    Activité : Développeur .NET

    Informations forums :
    Inscription : Janvier 2005
    Messages : 2 745
    Par défaut
    Citation Envoyé par Aspic
    Lol t'es sur que ca marche ca ?
    ouai
    Les règles du forum
    Le trio magique : FAQ + Cours + fonction rechercher
    Mes articles
    Pas de questions par messages privés svp

    Software is never finished, only abandoned.

  8. #8
    Membre Expert
    Avatar de Aspic
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2005
    Messages
    3 905
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Hauts de Seine (Île de France)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Août 2005
    Messages : 3 905
    Par défaut
    Citation Envoyé par The_badger_man
    ouai
    Ah ouais ^^ Cool je ne savais pas
    Qui ne tente rien n'a rien !
    Ce qui ne nous tue pas nous rends plus fort !!
    Mon projet ZELDA en C++/Allegro
    http://www.tutoworld.com - Le Forum -
    Mes ressources Dotnet (cours, sources, tutos)
    --------------------------------------------
    + + =

    Ne pas oublier le Tag !

  9. #9
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    94
    Détails du profil
    Informations personnelles :
    Localisation : Maroc

    Informations forums :
    Inscription : Mai 2007
    Messages : 94
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
     TextBox.ReadOnly = True

  10. #10
    Membre Expert
    Avatar de Aspic
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2005
    Messages
    3 905
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Hauts de Seine (Île de France)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Août 2005
    Messages : 3 905
    Par défaut
    Citation Envoyé par alaa_85
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
     TextBox.ReadOnly = True
    Qui ne tente rien n'a rien !
    Ce qui ne nous tue pas nous rends plus fort !!
    Mon projet ZELDA en C++/Allegro
    http://www.tutoworld.com - Le Forum -
    Mes ressources Dotnet (cours, sources, tutos)
    --------------------------------------------
    + + =

    Ne pas oublier le Tag !

  11. #11
    Membre averti
    Étudiant
    Inscrit en
    Avril 2007
    Messages
    29
    Détails du profil
    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Avril 2007
    Messages : 29
    Par défaut
    Voilà une petite application à ce propos:
    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
    Public Class Form1
        Inherits System.Windows.Forms.Form
     
    #Region " Code généré par le Concepteur Windows Form "
     
        Public Sub New()
            MyBase.New()
     
            'Cet appel est requis par le Concepteur Windows Form.
            InitializeComponent()
     
            'Ajoutez une initialisation quelconque après l'appel InitializeComponent()
     
        End Sub
     
        'La méthode substituée Dispose du formulaire pour nettoyer la liste des composants.
        Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
            If disposing Then
                If Not (components Is Nothing) Then
                    components.Dispose()
                End If
            End If
            MyBase.Dispose(disposing)
        End Sub
     
        'Requis par le Concepteur Windows Form
        Private components As System.ComponentModel.IContainer
     
        'REMARQUE : la procédure suivante est requise par le Concepteur Windows Form
        'Elle peut être modifiée en utilisant le Concepteur Windows Form.  
        'Ne la modifiez pas en utilisant l'éditeur de code.
        Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
        Friend WithEvents TextBox2 As System.Windows.Forms.TextBox
        Friend WithEvents TextBox3 As System.Windows.Forms.TextBox
        Friend WithEvents TextBox4 As System.Windows.Forms.TextBox
        Friend WithEvents TextBox5 As System.Windows.Forms.TextBox
        Friend WithEvents Label1 As System.Windows.Forms.Label
        Friend WithEvents Label2 As System.Windows.Forms.Label
        Friend WithEvents Label3 As System.Windows.Forms.Label
        Friend WithEvents Label4 As System.Windows.Forms.Label
        Friend WithEvents Label5 As System.Windows.Forms.Label
        <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
            Me.TextBox1 = New System.Windows.Forms.TextBox
            Me.TextBox2 = New System.Windows.Forms.TextBox
            Me.TextBox3 = New System.Windows.Forms.TextBox
            Me.TextBox4 = New System.Windows.Forms.TextBox
            Me.TextBox5 = New System.Windows.Forms.TextBox
            Me.Label1 = New System.Windows.Forms.Label
            Me.Label2 = New System.Windows.Forms.Label
            Me.Label3 = New System.Windows.Forms.Label
            Me.Label4 = New System.Windows.Forms.Label
            Me.Label5 = New System.Windows.Forms.Label
            Me.SuspendLayout()
            '
            'TextBox1
            '
            Me.TextBox1.Location = New System.Drawing.Point(152, 48)
            Me.TextBox1.Name = "TextBox1"
            Me.TextBox1.TabIndex = 0
            Me.TextBox1.Text = ""
            '
            'TextBox2
            '
            Me.TextBox2.Location = New System.Drawing.Point(152, 80)
            Me.TextBox2.Name = "TextBox2"
            Me.TextBox2.TabIndex = 1
            Me.TextBox2.Text = ""
            '
            'TextBox3
            '
            Me.TextBox3.Location = New System.Drawing.Point(152, 112)
            Me.TextBox3.Name = "TextBox3"
            Me.TextBox3.TabIndex = 2
            Me.TextBox3.Text = ""
            '
            'TextBox4
            '
            Me.TextBox4.Location = New System.Drawing.Point(152, 144)
            Me.TextBox4.Name = "TextBox4"
            Me.TextBox4.TabIndex = 3
            Me.TextBox4.Text = ""
            '
            'TextBox5
            '
            Me.TextBox5.Location = New System.Drawing.Point(152, 176)
            Me.TextBox5.Name = "TextBox5"
            Me.TextBox5.TabIndex = 4
            Me.TextBox5.Text = ""
            '
            'Label1
            '
            Me.Label1.Location = New System.Drawing.Point(0, 48)
            Me.Label1.Name = "Label1"
            Me.Label1.Size = New System.Drawing.Size(64, 23)
            Me.Label1.TabIndex = 5
            Me.Label1.Text = "Entier"
            '
            'Label2
            '
            Me.Label2.Location = New System.Drawing.Point(0, 80)
            Me.Label2.Name = "Label2"
            Me.Label2.Size = New System.Drawing.Size(64, 23)
            Me.Label2.TabIndex = 6
            Me.Label2.Text = "Decimal"
            '
            'Label3
            '
            Me.Label3.Location = New System.Drawing.Point(0, 112)
            Me.Label3.Name = "Label3"
            Me.Label3.Size = New System.Drawing.Size(72, 23)
            Me.Label3.TabIndex = 7
            Me.Label3.Text = "Entier negatif"
            '
            'Label4
            '
            Me.Label4.Location = New System.Drawing.Point(0, 144)
            Me.Label4.Name = "Label4"
            Me.Label4.Size = New System.Drawing.Size(72, 23)
            Me.Label4.TabIndex = 8
            Me.Label4.Text = "Demi"
            '
            'Label5
            '
            Me.Label5.Location = New System.Drawing.Point(0, 176)
            Me.Label5.Name = "Label5"
            Me.Label5.Size = New System.Drawing.Size(160, 16)
            Me.Label5.TabIndex = 9
            Me.Label5.Text = "Texte (seulement 'azertyuiop')"
            '
            'Form1
            '
            Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
            Me.ClientSize = New System.Drawing.Size(292, 266)
            Me.Controls.Add(Me.TextBox5)
            Me.Controls.Add(Me.Label5)
            Me.Controls.Add(Me.Label4)
            Me.Controls.Add(Me.Label3)
            Me.Controls.Add(Me.Label2)
            Me.Controls.Add(Me.Label1)
            Me.Controls.Add(Me.TextBox4)
            Me.Controls.Add(Me.TextBox3)
            Me.Controls.Add(Me.TextBox2)
            Me.Controls.Add(Me.TextBox1)
            Me.Name = "Form1"
            Me.Text = "Form1"
            Me.ResumeLayout(False)
     
        End Sub
     
    #End Region
     
        Enum FormatTexte
            Décimal
            Entier
            Demi
            Texte
            Décimal_Négatif
            Entier_Négatif
        End Enum
     
        Friend Sub FormatText(ByRef MonTexte As String, ByVal TypeTexte As FormatTexte, Optional ByVal Etendue As String = "", Optional ByVal TexteBox As TextBox = Nothing)
     
            'definition format
            Dim Numerique, Entier, Pointure, Negatif As Boolean
            Select Case TypeTexte
                Case FormatTexte.Décimal
                    Numerique = True
                    Entier = False
                    Negatif = False
                    Pointure = False
     
                Case FormatTexte.Décimal_Négatif
                    Numerique = True
                    Entier = False
                    Negatif = True
                    Pointure = False
     
                Case FormatTexte.Entier
                    Numerique = True
                    Entier = True
                    Negatif = False
                    Pointure = False
     
                Case FormatTexte.Entier_Négatif
                    Numerique = True
                    Entier = True
                    Negatif = True
                    Pointure = False
     
                Case FormatTexte.Demi
                    Numerique = True
                    Entier = False
                    Negatif = False
                    Pointure = True
     
                Case FormatTexte.Texte
                    Numerique = False
                    Entier = False
                    Negatif = False
                    Pointure = False
            End Select
     
     
            'Definition du séparateur décimal défini dans le panneau de configuration
            '************************************************************************
            Dim SeparateurDecimal As String
            If Pointure = False Then
                Dim Nombre As Single
                Nombre = Val("1.1")
                SeparateurDecimal = Mid(CStr(Nombre), 2, 1)
            Else
                SeparateurDecimal = "½"
            End If
     
     
            ' Si le champs est numérique
            '***************************
            If Numerique Then
     
                If Not Entier Then
                    'si decimal
                    MonTexte = MonTexte.Replace(",", SeparateurDecimal)
                    MonTexte = MonTexte.Replace(".", SeparateurDecimal)
                    If MonTexte.Compare(MonTexte, SeparateurDecimal) <> 0 Then
                        If MonTexte.IndexOf(SeparateurDecimal) <> MonTexte.LastIndexOf(SeparateurDecimal) Then
                            MonTexte = Mid(MonTexte, 1, MonTexte.LastIndexOf(SeparateurDecimal))  'garde qu'un seul SeparateurDecimal
                        End If
                    End If
    RefreshNum:
                    If Negatif = False Then
                        For x As Int16 = 1 To MonTexte.Length
                            If Not IsNumeric(Mid(MonTexte, x, 1)) And Mid(MonTexte, x, 1) <> SeparateurDecimal Then
                                MonTexte = MonTexte.Remove(x - 1, 1)
                                GoTo RefreshNum
                            End If
                        Next
                    Else
                        For x As Int16 = 1 To MonTexte.Length
                            If Not IsNumeric(Mid(MonTexte, x, 1)) And Mid(MonTexte, x, 1) <> SeparateurDecimal And Mid(MonTexte, x, 1) <> "-" Then
                                MonTexte = MonTexte.Remove(x - 1, 1)
                                GoTo RefreshNum
                            End If
                        Next
                    End If
     
                Else
     
                    'si entier
                    MonTexte = MonTexte.Replace(",", "")
                    MonTexte = MonTexte.Replace(".", "")
    RefreshNumInt:
                    If Negatif = False Then
                        For x As Int16 = 1 To MonTexte.Length
                            If Not IsNumeric(Mid(MonTexte, x, 1)) Then
                                MonTexte = MonTexte.Remove(x - 1, 1)
                                GoTo RefreshNumInt
                            End If
                        Next
                    Else
                        For x As Int16 = 1 To MonTexte.Length
                            If Not IsNumeric(Mid(MonTexte, x, 1)) And Mid(MonTexte, x, 1) <> "-" Then
                                MonTexte = MonTexte.Remove(x - 1, 1)
                                GoTo RefreshNumInt
                            End If
                        Next
                    End If
     
                End If
     
     
            Else
     
                'sinon si alpha
    RefreshAlpha:
                If MonTexte.Compare(MonTexte, Etendue) <> 0 Then
                    For x As Int16 = 1 To MonTexte.Length
                        If InStr(Etendue, Mid(MonTexte, x, 1)) < 1 Then
                            MonTexte = MonTexte.Remove(x - 1, 1)
                            GoTo RefreshAlpha
                        End If
                    Next
                End If
     
     
            End If
            On Error Resume Next
            TexteBox.Text = MonTexte
            TexteBox.Select(Len(TexteBox.Text), 0)
        End Sub
     
        Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
            Me.FormatText(Me.TextBox1.Text, FormatTexte.Entier, , Me.TextBox1)
        End Sub
     
        Private Sub TextBox2_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox2.TextChanged
            Me.FormatText(Me.TextBox2.Text, FormatTexte.Décimal, , Me.TextBox2)
        End Sub
     
        Private Sub TextBox3_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox3.TextChanged
            Me.FormatText(Me.TextBox3.Text, FormatTexte.Entier_Négatif, , Me.TextBox3)
        End Sub
     
        Private Sub TextBox4_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox4.TextChanged
            Me.FormatText(Me.TextBox4.Text, FormatTexte.Demi, , Me.TextBox4)
        End Sub
     
        Private Sub TextBox5_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox5.TextChanged
            Me.FormatText(Me.TextBox5.Text, FormatTexte.Texte, "azertyuiop", Me.TextBox5)
        End Sub
    End Class
    Bon Programmation...

  12. #12
    Membre Expert
    Avatar de Aspic
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2005
    Messages
    3 905
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Hauts de Seine (Île de France)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Août 2005
    Messages : 3 905
    Par défaut
    J'ai testé ton application, c'est pas mal

    Par contre, pour la TextBox négatif, tu devrais vérifier s'il n'y a pas plusieurs signe "-" dedans car sinon ca risque de planter !

    Sinon bonne gestion d'erreur pour les autres TextBox !

    Bon prog
    Qui ne tente rien n'a rien !
    Ce qui ne nous tue pas nous rends plus fort !!
    Mon projet ZELDA en C++/Allegro
    http://www.tutoworld.com - Le Forum -
    Mes ressources Dotnet (cours, sources, tutos)
    --------------------------------------------
    + + =

    Ne pas oublier le Tag !

Discussions similaires

  1. Bloquer les textBox sous excel
    Par Bass_Room dans le forum Access
    Réponses: 1
    Dernier message: 07/03/2007, 05h38
  2. Réponses: 2
    Dernier message: 29/11/2006, 15h42
  3. [C#][VS2005]Contrôle utilisateur et saisie TextBox
    Par caelum dans le forum Windows Forms
    Réponses: 2
    Dernier message: 19/04/2006, 21h24
  4. bloquer saisie d une textarea
    Par jeanPaul dans le forum Général JavaScript
    Réponses: 30
    Dernier message: 07/03/2006, 10h34
  5. bloquer un textbox
    Par xtaze dans le forum IHM
    Réponses: 2
    Dernier message: 15/06/2005, 14h14

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