Good morning,

I am working in Visual Studio, I have Binded some controls in the designer and I am trying to get sorted results to load on my form.

Code:
Tbl_InstitutionsTableAdapter.Fill(Me.BudgetDataSet.tbl_Institutions)
        Tbl_InstitutionsBindingSource.DataSource = BudgetDataSet.tbl_Institutions
I have this and it loads the first item in the Access database, but I want to be able to search the database and then load the result.

What am I missing here?

Richard