I have multiple databases with same set of tables and I need to assign ConnectiongString when the user login into the Application. 
Let me explain the problem:
My application already have "Dim da as New DataAccessApapter" lines that works directly with "Main.ConnectionString"
I have created new connectionString at the time of login. But I am too lazy  to change the line to "Dim da as New DataAccessAdapter(NewConnectionString) everywhere.
  to change the line to "Dim da as New DataAccessAdapter(NewConnectionString) everywhere. 
Is there any other way to apply the new ConnectionString to the DataAccessAdapter?  
 
Thanks.