DataGrid selection

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

in vb.net this the code to select the value for the first column in the
currentrow:
grdConcerts.Item(grdConcerts.CurrentRowIndex, 0)
but is not working with C#
 
The following appears to work:

grdConcerts[grdConcerts.CurrentRowIndex,0]

--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.


Hi,

in vb.net this the code to select the value for the first column in the
currentrow:
grdConcerts.Item(grdConcerts.CurrentRowIndex, 0)
but is not working with C#
 
Back
Top