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

Windows Forms Discussion :

traduction code VB en C#


Sujet :

Windows Forms

  1. #1
    Membre régulier
    Homme Profil pro
    Analyste Concepteur[Secteur Banque/assurance]/ Ingénieur d'état en informatique
    Inscrit en
    Août 2007
    Messages
    89
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 37
    Localisation : Maroc

    Informations professionnelles :
    Activité : Analyste Concepteur[Secteur Banque/assurance]/ Ingénieur d'état en informatique
    Secteur : Industrie

    Informations forums :
    Inscription : Août 2007
    Messages : 89
    Points : 96
    Points
    96
    Par défaut traduction code VB en C#
    Bonjour,
    je dois traduire un code VB en C# !!
    voila le code:
    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
    Imports System.Xml
    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 ComboBox1 As System.Windows.Forms.ComboBox
        Friend WithEvents txtTitre As System.Windows.Forms.TextBox
        Friend WithEvents txtAuteur 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 btnValider As System.Windows.Forms.Button
        Friend WithEvents btnSupprimer As System.Windows.Forms.Button
        Friend WithEvents btnAjouter As System.Windows.Forms.Button
        <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
    Me.ComboBox1 = New System.Windows.Forms.ComboBox()
    Me.btnAjouter = New System.Windows.Forms.Button()
    Me.btnSupprimer = New System.Windows.Forms.Button()
    Me.txtTitre = New System.Windows.Forms.TextBox()
    Me.txtAuteur = 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.btnValider = New System.Windows.Forms.Button()
    Me.SuspendLayout()
    '
    'ComboBox1
    '
    Me.ComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
    Me.ComboBox1.Location = New System.Drawing.Point(88, 16)
    Me.ComboBox1.Name = "ComboBox1"
    Me.ComboBox1.Size = New System.Drawing.Size(208, 21)
    Me.ComboBox1.TabIndex = 0
    '
    'btnAjouter
    '
    Me.btnAjouter.Location = New System.Drawing.Point(88, 136)
    Me.btnAjouter.Name = "btnAjouter"
    Me.btnAjouter.Size = New System.Drawing.Size(88, 24)
    Me.btnAjouter.TabIndex = 3
    Me.btnAjouter.Text = "Ajouter"
    '
    'btnSupprimer
    '
    Me.btnSupprimer.Location = New System.Drawing.Point(208, 136)
    Me.btnSupprimer.Name = "btnSupprimer"
    Me.btnSupprimer.Size = New System.Drawing.Size(88, 24)
    Me.btnSupprimer.TabIndex = 4
    Me.btnSupprimer.Text = "Supprimer"
    '
    'txtTitre
    '
    Me.txtTitre.Location = New System.Drawing.Point(88, 64)
    Me.txtTitre.Name = "txtTitre"
    Me.txtTitre.Size = New System.Drawing.Size(208, 20)
    Me.txtTitre.TabIndex = 5
    Me.txtTitre.Text = ""
    '
    'txtAuteur
    '
    Me.txtAuteur.Location = New System.Drawing.Point(88, 96)
    Me.txtAuteur.Name = "txtAuteur"
    Me.txtAuteur.Size = New System.Drawing.Size(208, 20)
    Me.txtAuteur.TabIndex = 6
    Me.txtAuteur.Text = ""
    '
    'Label1
    '
    Me.Label1.Location = New System.Drawing.Point(16, 72)
    Me.Label1.Name = "Label1"
    Me.Label1.Size = New System.Drawing.Size(64, 16)
    Me.Label1.TabIndex = 7
    Me.Label1.Text = "Titre"
    '
    'Label2
    '
    Me.Label2.Location = New System.Drawing.Point(16, 96)
    Me.Label2.Name = "Label2"
    Me.Label2.Size = New System.Drawing.Size(64, 16)
    Me.Label2.TabIndex = 8
    Me.Label2.Text = "Auteur"
    '
    'Label3
    '
    Me.Label3.Location = New System.Drawing.Point(16, 16)
    Me.Label3.Name = "Label3"
    Me.Label3.Size = New System.Drawing.Size(64, 16)
    Me.Label3.TabIndex = 9
    Me.Label3.Text = "Atteindre"
    '
    'btnValider
    '
    Me.btnValider.Location = New System.Drawing.Point(88, 136)
    Me.btnValider.Name = "btnValider"
    Me.btnValider.Size = New System.Drawing.Size(88, 24)
    Me.btnValider.TabIndex = 10
    Me.btnValider.Text = "Valider"
    Me.btnValider.Visible = False
    '
    'Form1
    '
    Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
    Me.ClientSize = New System.Drawing.Size(368, 190)
    Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Label3, Me.Label2, Me.Label1, Me.txtAuteur, Me.txtTitre, Me.btnSupprimer, Me.btnAjouter, Me.ComboBox1, Me.btnValider})
    Me.Name = "Form1"
    Me.Text = "Document XML"
    Me.ResumeLayout(False)
     
        End Sub
     
    #End Region
     
        Private Sub Form1_Load( _
                ByVal sender As Object, _
                ByVal e As System.EventArgs) Handles MyBase.Load
            RemplirListeAtteindre()
            ComboBox1.SelectedIndex = 0
        End Sub
     
        Sub RemplirListeAtteindre()
            ComboBox1.Items.Clear()
            Dim xmlr As New XmlTextReader("mediatheque.xml")
            Do While xmlr.Read
                If xmlr.NodeType = XmlNodeType.Element Then
                    If xmlr.Name = "TITRE" Then
                        ComboBox1.Items.Add(xmlr.ReadElementString)
                    End If
                End If
            Loop
            xmlr.Close()
        End Sub
     
        Private Sub ComboBox1_SelectedIndexChanged( _
                ByVal sender As Object, _
                ByVal e As System.EventArgs) _
                Handles ComboBox1.SelectedIndexChanged
     
            Dim DocXml As New XmlDocument()
            Dim Noeud As XmlNode
            Dim Noeuds As XmlNodeList
            Dim sCritere As String
     
            'sCritere = "//OEUVRE[TITRE=""" & ComboBox1.SelectedItem & """]/AUTEUR"
            'sCritere = "//OEUVRE[TITRE='Blade Runner']/AUTEUR"
     
            'Noeud = DocXml.SelectSingleNode(sCritere)
            'MsgBox(Noeud.InnerText)
     
            If ComboBox1.SelectedItem Is Nothing Then
                Exit Sub
            End If
     
            DocXml.Load("mediatheque.xml")
            sCritere = "//OEUVRE[TITRE=""" & ComboBox1.SelectedItem & """]"
            Noeud = DocXml.SelectSingleNode(sCritere)
            Noeuds = Noeud.ChildNodes
     
            For Each Noeud In Noeuds
                Select Case Noeud.Name
                    Case "TITRE"
                        txtTitre.Text = Noeud.InnerText
                    Case "AUTEUR"
                        txtAuteur.Text = Noeud.InnerText
                End Select
            Next
        End Sub
     
        Private Sub btnAjouter_Click( _
                ByVal sender As System.Object, _
                ByVal e As System.EventArgs) Handles btnAjouter.Click
     
            txtTitre.Text = String.Empty
            txtAuteur.Text = String.Empty
     
            ComboBox1.SelectedIndex = -1
     
            txtTitre.Select()
            btnAjouter.Visible = False
            btnValider.Visible = True
            btnSupprimer.Enabled = False
        End Sub
     
        Private Sub btnValider_Click( _
                ByVal sender As Object, _
                ByVal e As System.EventArgs) Handles btnValider.Click
            Dim DocXml As New XmlDocument()
            Dim Oeuvre As XmlElement
            Dim Element As XmlElement
     
            DocXml.Load("mediatheque.xml")
            ' Créer un nouvel élément OEUVRE
            Oeuvre = DocXml.CreateElement("OEUVRE")
     
            ' Créer un nouvel élément TITRE
            Element = DocXml.CreateElement("TITRE")
            Element.InnerText = txtTitre.Text
            ' Rattacher l'élément au noeud Oeuvre
            Oeuvre.AppendChild(Element)
     
            ' Créer un nouvel élément AUTEUR
            Element = DocXml.CreateElement("AUTEUR")
            Element.InnerText = txtAuteur.Text
            ' Rattacher l'élément au noeud Oeuvre
            Oeuvre.AppendChild(Element)
     
            ' Rattacher l'élément Oeuvre sous la racine du document
            DocXml.DocumentElement.AppendChild(Oeuvre)
            DocXml.Save("mediatheque.xml")
            RemplirListeAtteindre()
     
            txtTitre.Select()
            btnValider.Visible = False
            btnAjouter.Visible = True
            btnSupprimer.Enabled = True
        End Sub
     
        Private Sub btnSupprimer_Click( _
                ByVal sender As System.Object, _
                ByVal e As System.EventArgs) Handles btnSupprimer.Click
            Dim DocXml As New XmlDocument()
     
            Dim Noeud As XmlNode
            Dim NoeudPere As XmlNode
            DocXml.Load("mediatheque.xml")
            Dim sCritere As String
     
            If ComboBox1.SelectedItem Is Nothing Then
                MsgBox("Veuillez sélectionner un titre")
                Exit Sub
            End If
     
            sCritere = "//OEUVRE[TITRE=""" & ComboBox1.SelectedItem & """]"
            Noeud = DocXml.SelectSingleNode(sCritere)
            NoeudPere = Noeud.ParentNode
            NoeudPere.RemoveChild(Noeud)
            DocXml.Save("mediatheque.xml")
     
            RemplirListeAtteindre()
            ComboBox1.SelectedIndex = 0
        End Sub
     
    End Class

  2. #2
    Membre régulier
    Homme Profil pro
    Analyste Concepteur[Secteur Banque/assurance]/ Ingénieur d'état en informatique
    Inscrit en
    Août 2007
    Messages
    89
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 37
    Localisation : Maroc

    Informations professionnelles :
    Activité : Analyste Concepteur[Secteur Banque/assurance]/ Ingénieur d'état en informatique
    Secteur : Industrie

    Informations forums :
    Inscription : Août 2007
    Messages : 89
    Points : 96
    Points
    96
    Par défaut ajout infos
    je veux juste traduire les fonctions qui existe dans le code :
    ajouter et supprimer et la fontion qui charge le combobox a partir du fichier xml
    voila la structure de mn fichier xml

    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
     
    <?xml version="1.0" encoding="utf-8"?>
    <bouteilles>
     
     
      <bouteille>
        <type>eau crystaline</type>
        <volume>150 cl</volume>
        <composants>
          <ionpositives>
            <calcium>71 mg</calcium>
            <magnésium>5,5 mg</magnésium>
          </ionpositives>
          <ionnegatives>
            <chlorures >
              20 mg
            </chlorures >
            <nitrates> 1mg</nitrates>
          </ionnegatives>
          <autres>fer</autres>
        </composants>
        <lieu>St-Cyr la Source</lieu>*
        <departement>Loiret</departement>
        <code_barre>3274080005003</code_barre>
        <PH>7,45</PH>
      </bouteille>
     
     
     
      <bouteille>
        <type>eau crystaline</type>
        <volume>50 cl</volume>    
        <composants>
          <ionpositives>
            <calcium>
              98 mg
            </calcium>
            <magnésium>4 mg</magnésium>
          </ionpositives>
          <ionnegatives>
            <chlorures >3,6 mg</chlorures >
            <nitrates> 2 mg</nitrates>
          </ionnegatives>
          <autres></autres>
        </composants>
        <lieu>Aurèle alpes</lieu>
        <departement></departement>
        <code_barre>3268840001008</code_barre>
        <PH>7,4</PH>
      </bouteille>
     
     
     
     
      <bouteille>
        <type>Volvic</type>
        <volume>150 cl</volume>
        <composants>
          <ionpositives>
            <calcium>
              11,5 mg
            </calcium>
            <magnésium>8,0 mg</magnésium>
          </ionpositives>
          <ionnegatives>
            <chlorures >13,5 mg</chlorures >
            <nitrates>6,3 mg</nitrates>
          </ionnegatives>
          <autres>silice</autres>
        </composants>
        <lieu>St-Cyr la Source</lieu>*
        <departement>Loiret</departement>
        <code_barre>3274080005003</code_barre>
        <PH>7</PH>
      </bouteille>
     
     
    </bouteilles>
    MErci d'avance pour l'aide!!

  3. #3
    Membre averti
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Décembre 2004
    Messages
    304
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 42
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Décembre 2004
    Messages : 304
    Points : 405
    Points
    405
    Par défaut
    T'exagère
    c'est comme dire, je veux mettre cette chaine en majuscule
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    chaine
    ==>Resultat
    CHAINE
    Je prend juste la fonction Valider (qui soit disant passant Ajoute une ligne dans ton XML)
    Code VB : 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
     
    Private Sub btnValider_Click( _
                ByVal sender As Object, _
                ByVal e As System.EventArgs) Handles btnValider.Click
            Dim DocXml As New XmlDocument()
            Dim Oeuvre As XmlElement
            Dim Element As XmlElement
     
            DocXml.Load("mediatheque.xml")
            ' Créer un nouvel élément OEUVRE
            Oeuvre = DocXml.CreateElement("OEUVRE")
     
            ' Créer un nouvel élément TITRE
            Element = DocXml.CreateElement("TITRE")
            Element.InnerText = txtTitre.Text
            ' Rattacher l'élément au noeud Oeuvre
            Oeuvre.AppendChild(Element)
     
            ' Créer un nouvel élément AUTEUR
            Element = DocXml.CreateElement("AUTEUR")
            Element.InnerText = txtAuteur.Text
            ' Rattacher l'élément au noeud Oeuvre
            Oeuvre.AppendChild(Element)
     
            ' Rattacher l'élément Oeuvre sous la racine du document
            DocXml.DocumentElement.AppendChild(Oeuvre)
            DocXml.Save("mediatheque.xml")
            RemplirListeAtteindre()
     
            txtTitre.Select()
            btnValider.Visible = False
            btnAjouter.Visible = True
            btnSupprimer.Enabled = True
        End Sub
    ça Donne (quelques ";" plus tard)
    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
    private void btnValider_Click(object sender ,System.EventArgs e) 
    {
            XmlDocument DocXml = New XmlDocument();
            XmlElement Oeuvre;
            XmlElement Element;
     
            DocXml.Load("mediatheque.xml");
            //Créer un nouvel élément OEUVRE
            Oeuvre = DocXml.CreateElement("OEUVRE");
            //Créer un nouvel élément TITRE
            Element = DocXml.CreateElement("TITRE");
            Element.InnerText = txtTitre.Text;
            //Rattacher l'élément au noeud Oeuvre
            Oeuvre.AppendChild(Element);
     
            //Créer un nouvel élément AUTEUR
            Element = DocXml.CreateElement("AUTEUR");
            Element.InnerText = txtAuteur.Text;
            //Rattacher l'élément au noeud Oeuvre
            Oeuvre.AppendChild(Element);
     
            //Rattacher l'élément Oeuvre sous la racine du document
            DocXml.DocumentElement.AppendChild(Oeuvre);
            DocXml.Save("mediatheque.xml");
            RemplirListeAtteindre();
     
            txtTitre.Select();
            btnValider.Visible = False;
            btnAjouter.Visible = True;
            btnSupprimer.Enabled = True;
    }
    S'il n'y a pas de Solution, c'est qu'il n'y a pas de Problème.
    ----------------------------------------------------------------------------------------
    Pour se protéger, un bon préservatif pour votre PC : AntiVir et SpyBot - Search & Destroy

  4. #4
    Expert éminent sénior Avatar de Pol63
    Homme Profil pro
    .NET / SQL SERVER
    Inscrit en
    Avril 2007
    Messages
    14 154
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 42
    Localisation : France, Puy de Dôme (Auvergne)

    Informations professionnelles :
    Activité : .NET / SQL SERVER

    Informations forums :
    Inscription : Avril 2007
    Messages : 14 154
    Points : 25 072
    Points
    25 072
    Par défaut
    y a plein de site qui convertissent le code en un clic ... donc pourquoi ce post ?
    Cours complets, tutos et autres FAQ ici : C# - VB.NET

  5. #5
    Membre régulier
    Homme Profil pro
    Analyste Concepteur[Secteur Banque/assurance]/ Ingénieur d'état en informatique
    Inscrit en
    Août 2007
    Messages
    89
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 37
    Localisation : Maroc

    Informations professionnelles :
    Activité : Analyste Concepteur[Secteur Banque/assurance]/ Ingénieur d'état en informatique
    Secteur : Industrie

    Informations forums :
    Inscription : Août 2007
    Messages : 89
    Points : 96
    Points
    96
    Par défaut Re
    Merci pour la réponse!

    je sais qu'il y a des méthodes simples a traduire!
    chui pa tré majhad f C#

    maintenant chui bloqué dans ce pour le traduire en C#
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
     
     
      Sub RemplirListeAtteindre()
            ComboBox1.Items.Clear()
            Dim xmlr As New XmlTextReader("mediatheque.xml")
            Do While xmlr.Read
                If xmlr.NodeType = XmlNodeType.Element Then
                    If xmlr.Name = "TITRE" Then
                        ComboBox1.Items.Add(xmlr.ReadElementString)
                    End If
                End If
            Loop
            xmlr.Close()
        End Sub

    merci d'aider!!

  6. #6
    Membre régulier
    Homme Profil pro
    Analyste Concepteur[Secteur Banque/assurance]/ Ingénieur d'état en informatique
    Inscrit en
    Août 2007
    Messages
    89
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 37
    Localisation : Maroc

    Informations professionnelles :
    Activité : Analyste Concepteur[Secteur Banque/assurance]/ Ingénieur d'état en informatique
    Secteur : Industrie

    Informations forums :
    Inscription : Août 2007
    Messages : 89
    Points : 96
    Points
    96
    Par défaut RE
    EST ce que vous avez des propositions de site qui fait ça !!

    c la première fois que j'enttend çela!!

    Merci de donner les URL des sites qui font çela!!


    THANKS a LOT!!!

  7. #7
    Expert éminent sénior Avatar de Pol63
    Homme Profil pro
    .NET / SQL SERVER
    Inscrit en
    Avril 2007
    Messages
    14 154
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 42
    Localisation : France, Puy de Dôme (Auvergne)

    Informations professionnelles :
    Activité : .NET / SQL SERVER

    Informations forums :
    Inscription : Avril 2007
    Messages : 14 154
    Points : 25 072
    Points
    25 072
    Par défaut
    http://www.google.fr/search?hl=fr&q=...meta=&aq=f&oq=

    sur la 1ere page y en a au moins 2 qui marchent de mémoire
    Cours complets, tutos et autres FAQ ici : C# - VB.NET

Discussions similaires

  1. Traduction code VB recordset
    Par benbrisefer dans le forum Débutez
    Réponses: 3
    Dernier message: 26/03/2009, 16h25
  2. Traduction code formatage
    Par vlo59 dans le forum PostgreSQL
    Réponses: 1
    Dernier message: 20/08/2008, 17h06
  3. Traduction : code métier
    Par nicorama dans le forum La taverne du Club : Humour et divers
    Réponses: 8
    Dernier message: 29/05/2008, 10h58
  4. aide traduction code javascript
    Par calitom dans le forum Général JavaScript
    Réponses: 9
    Dernier message: 10/10/2007, 20h39

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