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 140509
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T07:37:38+00:00 2026-05-11T07:37:38+00:00

I want to show a master / detail relationship using two datagridviews and DataRelation

  • 0

I want to show a master / detail relationship using two datagridviews and DataRelation in C#.

The relation between the master and the detail table is an ID from type string (and there is no chance to change the ID to type integer).

It seems like the DataGridView is not able to update the detail view when changing the row in the master table.

Does anybody know if it is possible to achieve a master / detail view using a string ID and if yes, how? Or do I have to use an external DataGrid from another company?

Personally I don’t see a difference in using a string instead of an integer. The only thing I can think of is that the grid cannot handle a master detail view using a string ID relation.

UPDATE: The issue is solved, the problem was that one relation was from type nchar and had blancs at the end of the string. Thanks for the help!

Here is an example, please create a new VS 2008 project and copy the code. Change the connection string and the datarelation:

using System; using System.Data; using System.Data.SqlClient; using System.Windows.Forms;  public class Form1 : System.Windows.Forms.Form {     private DataGridView masterDataGridView = new DataGridView();     private BindingSource masterBindingSource = new BindingSource();     private DataGridView detailsDataGridView = new DataGridView();     private BindingSource detailsBindingSource = new BindingSource();      [STAThreadAttribute()]     public static void Main()     {         Application.Run(new Form1());     }      // Initializes the form.     public Form1()     {         masterDataGridView.Dock = DockStyle.Fill;         detailsDataGridView.Dock = DockStyle.Fill;          SplitContainer splitContainer1 = new SplitContainer();         splitContainer1.Dock = DockStyle.Fill;         splitContainer1.Orientation = Orientation.Horizontal;         splitContainer1.Panel1.Controls.Add(masterDataGridView);         splitContainer1.Panel2.Controls.Add(detailsDataGridView);          this.Controls.Add(splitContainer1);         this.Load += new System.EventHandler(Form1_Load);         this.Text = 'DataGridView master/detail demo';     }      private void Form1_Load(object sender, System.EventArgs e)     {         // Bind the DataGridView controls to the BindingSource         // components and load the data from the database.         masterDataGridView.DataSource = masterBindingSource;         detailsDataGridView.DataSource = detailsBindingSource;         GetData();          // Resize the master DataGridView columns to fit the newly loaded data.         masterDataGridView.AutoResizeColumns();          // Configure the details DataGridView so that its columns automatically         // adjust their widths when the data changes.         detailsDataGridView.AutoSizeColumnsMode =             DataGridViewAutoSizeColumnsMode.AllCells;     }      private void GetData()     {         try         {             // Specify a connection string. Replace the given value with a              // valid connection string for a Northwind SQL Server sample             // database accessible to your system.             String connectionString =                 '';             SqlConnection connection = new SqlConnection(connectionString);               // Create a DataSet.             DataSet data = new DataSet();             data.Locale = System.Globalization.CultureInfo.InvariantCulture;              // Add data from the Customers table to the DataSet.             SqlDataAdapter masterDataAdapter = new                 SqlDataAdapter('select * from customers', connection);             masterDataAdapter.Fill(data, 'Customers');              // Add data from the Orders table to the DataSet.             SqlDataAdapter detailsDataAdapter = new                 SqlDataAdapter('select * from orders', connection);             detailsDataAdapter.Fill(data, 'Orders');              // Establish a relationship between the two tables.             DataRelation relation = new DataRelation('CustomersOrders',                 data.Tables['Customers'].Columns['strID'],                 data.Tables['Orders'].Columns['strID']);             data.Relations.Add(relation);              // Bind the master data connector to the Customers table.             masterBindingSource.DataSource = data;             masterBindingSource.DataMember = 'Customers';              // Bind the details data connector to the master data connector,             // using the DataRelation name to filter the information in the              // details table based on the current row in the master table.              detailsBindingSource.DataSource = masterBindingSource;             detailsBindingSource.DataMember = 'CustomersOrders';           }         catch (SqlException)         {             MessageBox.Show('To run this example, replace the value of the ' +                 'connectionString variable with a connection string that is ' +                 'valid for your system.');         }     } } 
  • 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. 2026-05-11T07:37:39+00:00Added an answer on May 11, 2026 at 7:37 am

    I looked through your code and it looks basically OK. Please try to trim it a little further though.

    But I find the Field Names ‘strId’ a bit suspicious, is that really what the columns are called in the Database?

    Tip: Put a break on the Relations.Add(relation) line and inspect the relation object carefully.

    The code doesn’t show where/how the bindinsource components are made, maybe they have some designtime properties set (Filter).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i want to show one master and one detail data. master data from sale
I'm using Drupal 7 and Views module in my site. And want show number
I want to show activity indicator while sending and receiving synchronous asihttprequest from server.
I'm using UISplitViewController for app on iPad. The first task was to show master
I want to show image in the dropdown using asp.net c#, I got the
I want to define some data in a row, which is master/detail in nature.
i have a logout [link button] in master page and i want to show
I want show annotation view (above one of my pin) after load map. For
hii I want show a pop up Dialog box when i click on to
I'm working on application where I want show popover in - (void)applicationWillEnterForeground:(UIApplication *)application app

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.