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
| Private Sub Entreprise_AfterUpdate()
Dim v_id_prospect As String
v_id_prospect = Entreprise.Column(2)
Ville = Entreprise.Column(1)
test_id_prospect = v_id_prospect
Dim record_fiche_prospect As DAO.Recordset
Dim req As DAO.Database
Set req = CurrentDb
Set record_fiche_prospect = req.OpenRecordset("SELECT source, secteur_activite, profil, adresse, num_voie, voie, libelle_voie, cp, prenom, nom, tel, mail, fonction, naf, siret FROM t_fiche_prospect WHERE ID_prospect=" & v_id_prospect, dbOpenDynaset)
Source = record_fiche_prospect.Fields(0).Value
Secteur_Activite = record_fiche_prospect.Fields(1).Value
Profil = record_fiche_prospect.Fields(2).Value
Adresse = record_fiche_prospect.Fields(3).Value
num_voie = record_fiche_prospect.Fields(4).Value
Voie = record_fiche_prospect.Fields(5).Value
libelle_voie = record_fiche_prospect.Fields(6).Value
CP = record_fiche_prospect.Fields(7).Value
prenom = record_fiche_prospect.Fields(8).Value
Nom = record_fiche_prospect.Fields(9).Value
Tel = record_fiche_prospect.Fields(10).Value
Mail = record_fiche_prospect.Fields(11).Value
Fonction = record_fiche_prospect.Fields(12).Value
naf = record_fiche_prospect.Fields(13).Value
siret = record_fiche_prospect.Fields(14).Value |
Partager