Populate textbox with data source name when data linking

B

Bettergains

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
 
O

Ofer

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
 
Top