Link to home
Start Free TrialLog in
Avatar of Craig_Muckleston
Craig_MucklestonFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Populating controls from selecting a row in a DataGrid

Hey there everyone,

I'm a newbie to VisualStudio.NET so I'm still struggling my way though it.

I am busy with a project and have a DataGrid that is populated with a list of names (I have created the Connection, Adapter & DataSet to do this and have the correct Data Members & Data Source selected)

What I want to do is have the controls on my form populated when I select a name from the datagrid.

What I have done is create a button (to test of course) that would load the data, however I am stuck on how I specify the row to be used in the datagrid (grdEmpList). I have this that loads all the controls but only with the first entry in the db.

    Private Sub butLoad_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles butLoad.Click
        tblEmp_DataSet.Clear()
        tblEmp_Adapter.Fill(tblEmp_DataSet)
    End Sub



ASKER CERTIFIED SOLUTION
Avatar of RonaldBiemans
RonaldBiemans

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial