Error creating form

0

I'm developing a program in Delphi and connecting to the database, the database has only one table. Today I tried to open the form and the following message appeared:

  

Error creating form: Datasource makes a circular link

    
asked by anonymous 11.11.2015 / 13:55

1 answer

0

You are probably linking the DataSource to a DataSet that is linked to another DataSet, review the order of creation of the components:

Conexão => DataSet => (Provider + DataSet, caso existir) => DataSource
    
16.11.2015 / 11:09