library to use with access

A

Axyl

Hi all,
I had made an access program that need to load some library for work
correctly, like DAO2535.tlb. I had configured my visual basic editor to use
those dll and active x.
There is a way to do that via vba code? this because I need to share my
program without teach how to load this.
(maybe confused)

thanks.
regs.
 
D

Douglas J. Steele

When you create an Access application, the references "travel" with it. In
other words, if you've set a reference to DAO2535.tlb, the application will
look for that same reference on any other machine to which the MDB is
copied.

BTW, I would question why you're using DAO2535.tlb. That's only there for
backwards compatibility between Access 97 and Access 2.0, and shouldn't be
used with Access 2000 and on)
 
A

Axyl

Thanks.


Douglas J. Steele said:
When you create an Access application, the references "travel" with it. In
other words, if you've set a reference to DAO2535.tlb, the application
will
look for that same reference on any other machine to which the MDB is
copied.

BTW, I would question why you're using DAO2535.tlb. That's only there for
backwards compatibility between Access 97 and Access 2.0, and shouldn't be
used with Access 2000 and on)
 
Top