do not hardcode your database path.
Just make your setup structure like this:
App.exe (your compiled app)
database\db.mdb (your database)
Then on your code where you connect to database, you can do it like this:App.path & "\database\db.mdb"
thats it. hope it helps.