Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6999669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T20:34:19+00:00 2026-05-27T20:34:19+00:00

I have a DataTable which is bind to dataGridview in my code. When I

  • 0

I have a DataTable which is bind to dataGridview in my code.

When I get datas from database, the gridview works fine. it fills with data.
What I want to do is getting the primary key value of the specified row.

Ex:

PK         Address          Phone
1          xxxyyyzzz...     1234567   
2          aaabbbccc...     2345678

What I want is this. User will click on any row, then click on a button to add some stuff.
Then I will get PK value, and do other stuffs.

How can I do it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T20:34:19+00:00Added an answer on May 27, 2026 at 8:34 pm

    Hmm can you specify how and when you are talking about getting this value?

    You can do this:

    int index = dt.Rows.IndexOf(row);
    

    But I am not sure what the point of that would be, if you already have the specified row, why can’t you just get the PK via row[columnName]?

    But this is more resource intensive than just looping through with a for loop.

    Do you need this before or after binding to the dataGridView? If you need to get the value from the dataGridView row that is different.

    For your edit:

    You would can get the selected row like so:

    if (yourDataViewGrid.SelectedRows.Count == 1) 
    { 
    Int pk = yourDataViewGrid.Rows[yourDataViewGrid.SelectedRows[0].Index].Cells["PK"].Value.ToString(); 
    } 
    

    If you are doing it by some other method like using a checkbox to select a row, you would do this:

    foreach (DataGridViewRow row in YourDataGridView.Rows)
            {
    
                if ((Boolean)((DataGridViewCheckBoxCell)row.Cells["CheckBoxName"]).FormattedValue)
                {
                   Int pk = rows.Cells["PK"].Value.ToString();
                }
    
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this code which export data from GridView to csv. It works with
I have a DataTable which I select from database (Well, these data cross several
I have a GridView to which I bind a dataTable that I manually created.
In C#/ASP.NET 3.5, I have a DataTable which pulls rows from the database. I
I have a DataSet which I get a DataTable from that I am being
I have a DataTable which I get by an upload of CSV document from
I have a gridview which i bind to a datatable. After i bind i
I have a DataTable which is bound to a GridView. I also have a
I have a DataTable which I want to save to a SQLite Database Table.
I have a DataTable which is bound to datagridview (Winforms)... I use the following

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.