Hi team

I am trying to bing a datagrid to an ADODC with the code below.
VB Code:
  1. adoStoreCodes.ConnectionString = PU.PradaUtilityDBConnection
  2.     adoStoreCodes.RecordSource = "SELECT BondNo, LocationID FROM LocationsDetail"
  3.     adoStoreCodes.Refresh
  4.     Set dgdStoreCodes.DataSource = adoStoreCodes
  5.     dgdStoreCodes.Rebind
It works fine in the IDE but won't work on client machine. I get an error "Cannot initialize data bindings"

Is there something I need to distribute with the app?

Anny other ideas?

Thanks FW