Pb requete access/vb
Fermé
Vincent
-
30 juin 2004 à 09:07
Fada09 Messages postés 1701 Date d'inscription lundi 15 septembre 2003 Statut Contributeur Dernière intervention 4 septembre 2010 - 30 juin 2004 à 10:35
Fada09 Messages postés 1701 Date d'inscription lundi 15 septembre 2003 Statut Contributeur Dernière intervention 4 septembre 2010 - 30 juin 2004 à 10:35
A voir également:
- Pb requete access/vb
- Vb - Télécharger - Langages
- Vb cable - Télécharger - Audio & Musique
- Access appdata - Guide
- You don't have permission to access this resource ✓ - Forum Réseaux sociaux
- Controller access network - Télécharger - Contrôle parental
1 réponse
Fada09
Messages postés
1701
Date d'inscription
lundi 15 septembre 2003
Statut
Contributeur
Dernière intervention
4 septembre 2010
542
30 juin 2004 à 10:35
30 juin 2004 à 10:35
Salut,
Voici comment je ferais :
dim rst as recordset
dim critere as string
dim recup
critere = "[NomT] = ' " & Me.TypeM.value & " ' "
set rst = CurrentDb.OpenRecordset ("Type", dbOpenDynaset)
with rst
.FindFirst critere
If rst.NoMatch then
' l'enregistrement n'existe pas
msgbox ("vous avez choisi un mauvais type",,"Titre")
else
.Edit
recup = !idT
End If
End With
rst.Close
Après ceci tu as l'identifiant de ton type dans la variable récup.
voila j'espere t'avoir aidé ++
;-)
~ ~ Fada ~ ~ : Member of Star!alco
Voici comment je ferais :
dim rst as recordset
dim critere as string
dim recup
critere = "[NomT] = ' " & Me.TypeM.value & " ' "
set rst = CurrentDb.OpenRecordset ("Type", dbOpenDynaset)
with rst
.FindFirst critere
If rst.NoMatch then
' l'enregistrement n'existe pas
msgbox ("vous avez choisi un mauvais type",,"Titre")
else
.Edit
recup = !idT
End If
End With
rst.Close
Après ceci tu as l'identifiant de ton type dans la variable récup.
voila j'espere t'avoir aidé ++
;-)
~ ~ Fada ~ ~ : Member of Star!alco