Bouton formulaire
Fermé
mya-cpt
Messages postés
2
Date d'inscription
mercredi 1 juin 2011
Statut
Membre
Dernière intervention
1 juin 2011
-
1 juin 2011 à 11:32
mprog67 Messages postés 28 Date d'inscription mercredi 24 mars 2010 Statut Membre Dernière intervention 14 mai 2012 - 9 juin 2011 à 22:12
mprog67 Messages postés 28 Date d'inscription mercredi 24 mars 2010 Statut Membre Dernière intervention 14 mai 2012 - 9 juin 2011 à 22:12
A voir également:
- Bouton formulaire
- Formulaire de réclamation facebook - Guide
- Réinitialiser chromecast sans bouton - Guide
- Bouton reinitialisation pc - Guide
- Formulaire instagram compte suspendu - Guide
- Bouton on/off comment savoir ✓ - Forum Matériel & Système
1 réponse
mprog67
Messages postés
28
Date d'inscription
mercredi 24 mars 2010
Statut
Membre
Dernière intervention
14 mai 2012
2
9 juin 2011 à 22:12
9 juin 2011 à 22:12
Bonsoir, voilà un exemple de code qui vous sera utile.
Private Sub (Ton boutton)_Click()
Dim Dbs As Database
Dim Rst As Recordset
Dim Trouve As Boolean
Set Dbs = CurrentDB()
Set Rst = Dbs.OpenRecordset("Ta deuxième table")
Trouve = False
For i = 0 To Rst.RecordCount - 1
If Rst.Fields(0) = Me!NUMclient Then
Rst.Fields(1) = Rst.Fields(1) + 1
Trouve = True
Exit for
End if
Next i
If Trouve = False Then
MsgBox "Ce numéro client n'existe pas.",VbInformation,"mprog67@yahoo.fr"
End if
End Sub
Private Sub (Ton boutton)_Click()
Dim Dbs As Database
Dim Rst As Recordset
Dim Trouve As Boolean
Set Dbs = CurrentDB()
Set Rst = Dbs.OpenRecordset("Ta deuxième table")
Trouve = False
For i = 0 To Rst.RecordCount - 1
If Rst.Fields(0) = Me!NUMclient Then
Rst.Fields(1) = Rst.Fields(1) + 1
Trouve = True
Exit for
End if
Next i
If Trouve = False Then
MsgBox "Ce numéro client n'existe pas.",VbInformation,"mprog67@yahoo.fr"
End if
End Sub