Le fournisseur 'Microsoft.ACE.OLEDB.12.0' n'est pas inscrit sur

Abidine1974 Messages postés 6 Date d'inscription dimanche 8 mai 2016 Statut Membre Dernière intervention 9 mai 2016 - 9 mai 2016 à 22:54
 Abidine1974 - 26 mai 2016 à 21:56
Bonjour,
Tout d'abord Merciiiii
voici le code de la 2° feuille
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Produits : Form
    {
        public Produits()
        {
            InitializeComponent();
        }

        private void produitBindingNavigatorSaveItem_Click(object sender, EventArgs e)
        {
            this.Validate();
            this.produitBindingSource.EndEdit();
            this.tableAdapterManager.UpdateAll(this.cafeDataSet);

        }

        private void Produit_Load(object sender, EventArgs e)
        {
            // TODO : cette ligne de code charge les données dans la table 'cafeDataSet.Produit'. Vous pouvez la déplacer ou la supprimer selon vos besoins.
            this.produitTableAdapter.Fill(this.cafeDataSet.Produit);

        }
    }
}

ALORS LE PROGRAMME LE PETIT APPEL AFFICHE LA FEUILLE PRODUIT MAIS
AVEC 3 PETITS SOUCIS
QUAND JE CLICK SUR L'icon + le 1er enregistrement prend un signe negatif
les deux autres sont les mms
" this.produitTableAdapter.Fill(this.cafeDataSet.Produit" demande un fournisseur de base de données "Le fournisseur 'Microsoft.ACE.OLEDB.12.0' n'est pas inscrit sur l'ordinateur local."
j ai marqué cette ligne comme comment
quand je fais la saisis de mon nouveau produit et je click sur l'icon en registrer ça donne ceci "Le fournisseur 'Microsoft.ACE.OLEDB.12.0' n'est pas inscrit sur l'ordinateur local."
merci infiniment
A voir également:

3 réponses

NHenry Messages postés 15113 Date d'inscription vendredi 14 mars 2003 Statut Modérateur Dernière intervention 22 avril 2024 159
10 mai 2016 à 12:31
Es-tu sur un PC 64 bits ?
Si oui, force la compilation en x86.
1
Rejoignez-nous