Ajout enregistrement type boolean VB ACCESS

Fermé
hajarette Messages postés 125 Date d'inscription dimanche 16 novembre 2008 Statut Membre Dernière intervention 8 novembre 2012 - 10 août 2010 à 13:30
hajarette Messages postés 125 Date d'inscription dimanche 16 novembre 2008 Statut Membre Dernière intervention 8 novembre 2012 - 10 août 2010 à 13:54
Bonjour,

je veux faire un ajout d'un enregistrement avec type boolean
je travail avec VB2008 et ACCESS pour la base de données



Structure de la table 'Gh_Type_Chambre '
A voir également:

2 réponses

hajarette Messages postés 125 Date d'inscription dimanche 16 novembre 2008 Statut Membre Dernière intervention 8 novembre 2012 16
10 août 2010 à 13:53
resolu :

voila la correction , si jamais qq1 a le meme probleme

If Soumis_Tarification.Checked = True Then
            conComm = New OleDb.OleDbCommand("INSERT INTO Gh_Type_Chambre (ID_Type_Chambre,Libelle,Soumis_Tarification) VALUES('" & ligne("ID_Type_Chambre") & "','" & ligne("Libelle") & "',true)", con)
            conComm.ExecuteNonQuery()
        ElseIf Soumis_Tarification.Checked = False Then
            conComm = New OleDb.OleDbCommand("INSERT INTO Gh_Type_Chambre (ID_Type_Chambre,Libelle,Soumis_Tarification) VALUES('" & ligne("ID_Type_Chambre") & "','" & ligne("Libelle") & "',False)", con)
            conComm.ExecuteNonQuery()
        End If
0
hajarette Messages postés 125 Date d'inscription dimanche 16 novembre 2008 Statut Membre Dernière intervention 8 novembre 2012 16
10 août 2010 à 13:54
je veux faire resolu comme statut , mais ca ne marche pas :)
0