mannanaesc
Messages postés26Date d'inscriptionmercredi 9 avril 2008StatutMembreDernière intervention19 mai 2010
-
11 juin 2008 à 10:00
mannanaesc
Messages postés26Date d'inscriptionmercredi 9 avril 2008StatutMembreDernière intervention19 mai 2010
-
12 juin 2008 à 08:37
bjs. j'essaie de chercher deux champs d'une base access avec vb6 mé ca marche pa. svp aidez moi. il faut ke je le fasse pour mon projet de stage de 1er cycle. voilà mon code:
RScomar.FindFirst "numcont =" & Text1.Text
If RScomar.NoMatch = False Then
RScomar.FindFirst "codim =" & Text2.Text 'c'est l'instruction qui ne marche pa
If RScomar.NoMatch = False Then
MsgBox "2ème étape : Ce numero existe déjà. tapez un autre", vbInformation, "Information"
Text1.Text = ""
Text2.Text = ""
End If
Else
MsgBox "2ème étape : Ce numero n'existe pas, nous allons le rajouter à la liste", vbInformation, "Information"
RScomar.AddNew
RScomar("numcont") = Text1.Text
RScomar("codim") = Text2.Text
RScomar("caution") = Text3.Text
RScomar("sitcont") = Text4.Text
RScomar.Update
MsgBox ("Le contrat a été ajoutée.")
DBComar.Close
Set DBComar = OpenDatabase(App.Path & "\comar1.mdb")
Set RScomar = DBComar.OpenRecordset("Select * from contrat ")
Set SNcomar = DBComar.OpenRecordset("Select numcont,codim from contrat")
Command1.Enabled = True
RScomar.MoveLast
End If