Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DataGrid Select Button Column

Status
Not open for further replies.

DirectDrive

Programmer
Jan 24, 2003
42
US
Can anyone tell me what event fires when the Select Button Column button is clicked? i am trying to return a value from another column when the button is clicked.

Thanks.
 


the SelectedIndexChanged event.
and to capture the value you can use the following line of code:
dim strValue as string=e.Item.Cells(1).Text

Hope this helps
Sam
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top