Hi guys !
I'm asking if is possible insert a different button in a DataGridView like the example picture.
i try with this lines, i can show the button but when i click on the button, the function doesn't start
$button6 = New-Object System.Windows.Forms.DataGridViewButtonColumn
$button6.HeaderText = "START_FUNCTION"
$button6.UseColumnTextForButtonValue = $true
$button6.Text = "SELECT"
$button6.Width = 190
$button6.HeaderText
$button6.Add_CellMouseClick({SELECTEDROWS})
$dataGridView.columns.Add($button6)