C# Datagridview

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • wademi
    New Member
    • Jan 2008
    • 3

    C# Datagridview

    In c#.net I have a datagridview. I have four columns which I populate at runtime.
    I want a user to be able to select a row on the datagrid and the information from one of the culumn from the selected row be populated to a seperate text box on my form.

    I would be glad if someone could help me with that
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    Set your selection style to be full row select, then take a look at the SelectionChange d event for DataGridViews

    Comment

    Working...