Ou puis-je trouver ce composant (Microsoft Jet and replication Objects 2.5 library) ?

-------------------------------
Réponse au message :
-------------------------------
>
> Merci ...
> Je te tiens au courant si cela ne marche pas ...
>
>

>
>
> -------------------------------
> Réponse au message :
> -------------------------------
>
> > http://www.able-consulting.com/ADOX_Faq.htm#Q7
> >
> > Il faut utiliser "Microsoft Jet and Replication Objects 2.5 Library" (JRO).
> >
> > Dim oJetEngine As JRO.JetEngine
> > Dim sSourceConn As String
> > Dim sDestConn As String
> >
> > Set oJetEngine = New JRO.JetEngine
> >
> > ' Engine Type = 4 compacts an Access database in 3.5 format
> > ' Engine Type = 5 compacts an Access database in 4.0 format (default)
> >
> > sSourceConn = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
> > "Data Source=.\advworks.mdb;" & _
> > "Jet OLEDB:Engine Type=5;"
> >
> > sDestConn = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
> > "Data Source=.\advworks1.mdb;" & _
> > "Jet OLEDB:Engine Type=5;"
> >
> > ' Compact the database (makes a new copy)
> > oJetEngine.CompactDatabase sSourceConn, sDestConn
> >
> > For more information, see: Q230501 and Q273956
> >
> > -------------------------------
> > Réponse au message :
> > -------------------------------
> >
> > > Je souhaiterais compacter une base de données Access 2000 via une application VB au travers du composant ADODC ...
> > >
> > > Comment puis-je faire ?
> > >
> > > J'ai essayé avec le composant Data, mais il me dit erreur de compatibilité Access (Normal, cela fonctionne pour Access97)
> > >
> > > Merci de votre aide
> >
>