I'm using this code in VB to use the TransferText method from the access 2000 object...

<
Set objAcc = New Access.Application

objAcc.OpenCurrentDatabase strDatabasePath, False

objAcc.DoCmd.TransferText acExportDelim, "Nummeringen", "Nummeringen", strNummeringen
>

This works fine UNTIL I start using the password-security from
the access 2000 DB...

I just can't figure out how I can open the database using the Access object and pass the password without having a popup screen
that askes me to enter the password.

Does anyone know how to open a database with a password by using the Access object???

Thx! Your help is appreciated!