lizzieborden
MIS
I have created an application that uses a sql connection to retrieve, edit, change data. The application worked fine when I had my data adapter, connection and dataset on just one form to fill a grid. Now I have created two more sets of connections, adapter and datasets but my grids don't fill on execution. Nor can I preview the data in the dataset any longer. If I take out the additional connection, adapters and datasets it works????
I am using sql server with 3 different tables of data. I have created an inner join with two tables on two different forms?
My questions is first of all what am I doing wrong? I did have it working at one point.
Do I need a connection, data adapter and dataset on all three forms within the app???
I also have the following code on form load:
da_profiles.Fill(ds_profiles)
I am using sql server with 3 different tables of data. I have created an inner join with two tables on two different forms?
My questions is first of all what am I doing wrong? I did have it working at one point.
Do I need a connection, data adapter and dataset on all three forms within the app???
I also have the following code on form load:
da_profiles.Fill(ds_profiles)