Link to home
Create AccountLog in
Avatar of garethh86
garethh86Flag for United Kingdom of Great Britain and Northern Ireland

asked on

Code behind for Button Click in Datagridview Windows App

Hey there.

This is for a windows App made in VS2008.
I've added a button column in a datagridview, when clicked I would like to get the ID of the record selected. The ID of the record is the second column along, next to the select button. Been playing around with findcontrol but I'm not getting very far.

Thanks
Avatar of scgstuff
scgstuff
Flag of United States of America image

You can always use the DataKeynames and put the recordID in as the key.  Then you should be able to say

dim myID as string
myID = DataGridView1.Rows(e.rowindex).cells(1).value.tostring

Shawn
BTW...Ignore the first part about DataKeyNames.  I started thinking about GridView with web stuff, not the DataGridView.  Sorry about that if it was confusing....I just went the wrong way.  You can just keep the DataGridView the way it is and use this.

Shawn
Avatar of garethh86

ASKER

How do I access the button though if it is made at runtime? I need code for finding that control, sorry, my fault, didn't make that clear enough in the question.
ASKER CERTIFIED SOLUTION
Avatar of scgstuff
scgstuff
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Sorry, I'm doing this is VB.net, coverted to code below but 'column1' is coming up as not declared, would you know what it should be changed to for this to work in vb.net? Thanks for your help so far!

    Private Sub dataGridView1_CellContentClick(ByVal sender As Object, ByVal e As DataGridViewCellEventArgs)
        ' find out which column was clicked
        If DataGridView1.Columns(e.ColumnIndex) = Column1 Then
            Dim strMessage As String = DataGridView1.Rows(e.RowIndex).Cells(2).Value.ToString()
            MessageBox.Show(strMessage)
        End If
    End Sub
Got it, https://www.experts-exchange.com/questions/23373255/VB-net-2-0-Windows-Forms-DataGridView-Get-Cell-Value-from-Column-Name-and-Row.html

See code below, I'll award points for putting me on the right track, thanks!
  Private Sub DataGridView1_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellContentClick
        Dim strTest As String
 
        strTest = Me.DataGridView1.CurrentRow.Cells("IDDataGridViewTextBoxColumn").Value
 
        Label6.Text = strTest
 
    End Sub

Open in new window

Came back to this to refresh my memory, in case anyone else comes across this and is stuck heres the vb.net code for determining which column was clicked:


Private Sub SearchResultsDataGrid_CellContentClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles SearchResultsDataGrid.CellContentClick
 
        If SearchResultsDataGrid.Columns(e.ColumnIndex).Equals(SearchResultsDataGrid.Columns(0)) Then
            'Insert your code here, assumes that your button control is in the first column.
        End If

Open in new window