DataGrid selection

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mike

    DataGrid selection

    Hi,

    in vb.net this the code to select the value for the first column in the
    currentrow:
    grdConcerts.Ite m(grdConcerts.C urrentRowIndex, 0)
    but is not working with C#

    --
    Regads,
    Rochdi
  • David Lloyd

    #2
    Re: DataGrid selection

    The following appears to work:

    grdConcerts[grdConcerts.Cur rentRowIndex,0]

    --
    David Lloyd
    MCSD .NET
    Lemington Consulting provides Managed I.T. Services, I.T. Consulting, Cloud Solutions, Database Managment and Hosting, and Custom Software Development for customers nationwide.


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


    "Mike" <Mike@discussio ns.microsoft.co m> wrote in message
    news:2BFF3FD1-A5EC-439B-8133-19520F428C9E@mi crosoft.com...
    Hi,

    in vb.net this the code to select the value for the first column in the
    currentrow:
    grdConcerts.Ite m(grdConcerts.C urrentRowIndex, 0)
    but is not working with C#

    --
    Regads,
    Rochdi


    Comment

    Working...