There is no bin folder after deployment installation but as long as the database is in the same folder as the app.exe you can use the Application.StartUpPath method to determine the path to that folder.
Dim strDbFileName As String = ""
Dim strDatabaseSource As String = ""
strDbFileName = "myDatabase.mdb"
strDatabaseSource = IO.Path.Combine(Application.StartupPath, strDbFileName)