Populate textbox with data source name when data linking

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello:

I am linking to an sql backend and want to show in a from textbox, the name
of that datasource. How can that be done programmatically?

Regards, Germaine
 
Try and select the property of one of the tables connection

On the Load event of the form
Me.TextBox = application.CurrentDb.TableDefs("TableName").Connect
 
Back
Top