I have an app that hooks up to a SQL Server 7 database. We are in the middle of development with the database so versions come out once every 3 weeks or so. My app, which uses Access 2000 to summarized and analyze data, will link tables through ODBC. My problem is that all code that I have seen regarding refreshing links or creating connections require the DSN and the Database Name.<br>The Connection path I use looks like this:<br><br>strPath = "ODBC;DSN=MyDSN;Database=MyDatabase;UID=MyID;PWD="<br><br> When my app is distributed to 15 sites there is a chance that the Database Name will change - Especially if for some reason we have to do a major revision for some unforseen reason. Therefore, I want to stay away from hardcoding the Database Name. What I need is for a way to determine the default Database Name configured to the DSN (The DSN name will not be changing). I have tried just passing the DSN and nothing seems to happen, no connection is made. Can anyone help with this one?<br><br>Thanks in advance!<br><br>Bob