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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:53:44+00:00 2026-05-26T02:53:44+00:00

Is it possible to have both DataGridViewComboBoxCells and DataGridViewTextBoxCells in a single DataGridViewColumn? Or

  • 0

Is it possible to have both DataGridViewComboBoxCells and DataGridViewTextBoxCells in a single DataGridViewColumn? Or am I absolutely restricted to having one type per column?

  • 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-26T02:53:45+00:00Added an answer on May 26, 2026 at 2:53 am

    There is a weird solution for this.
    By default create the column as TextBox.
    Handle the cell click or cell enter event.
    In the event if the ColumnIndex matches, Convert the column type to ComboBox and set the items.
    Once the cell leave event fires from the respective column index, convert it back to textbox.
    Dont forget to read the text from Combo before converting and set it to TextBox.

    I know this is not apt solution but works.

    I am eager to know if anyone has a better idea.

    Questioner’s EDIT:

    Here was the code I ultimately wrote:

    // Using CellClick and CellLeave in this way allows us
    // to stick combo boxes in a particular row, even if the
    // parent column type is different
    private void dataGrid_CellClick(object sender, DataGridViewCellEventArgs e)
    {
        if (e.ColumnIndex >= FIRST_COL && e.ColumnIndex <= LAST_COL && e.RowIndex == ROW_OF_INTEREST)
        {
            object value = dataGrid.Rows[e.RowIndex].Cells[e.ColumnIndex].Value;
            dataGrid.Columns[e.ColumnIndex].CellTemplate = new DataGridViewComboBoxCell();
            var cell = new DataGridViewComboBoxCell {Value = value};
            cell.Items.AddRange(_values);
            dataGrid.Rows[e.RowIndex].Cells[e.ColumnIndex] = cell;
        }
    }
    
    private void dataGrid_CellLeave(object sender, DataGridViewCellEventArgs e)
    {
        if (e.ColumnIndex >= FIRST_COL && e.ColumnIndex <= LAST_COL && e.RowIndex == ROW_OF_INTEREST)
        {
            object value = dataGrid.Rows[e.RowIndex].Cells[e.ColumnIndex].Value;
            dataGrid.Columns[e.ColumnIndex].CellTemplate = new DataGridViewTextBoxCell();
            var cell = new DataGridViewTextBoxCell {Value = value};
            dataGrid.Rows[e.RowIndex].Cells[e.ColumnIndex] = cell;
        }
    }
    

    Also, when creating the column, I had to make sure it was a generic column; i.e. not a DataGridViewTextBoxColumn:

    var col = new DataGridViewColumn
                  {
                      CellTemplate = new DataGridViewTextBoxCell()
                  };
    

    That way, I could change the CellTemplate later.

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

Sidebar

Related Questions

I was wondering if it possible to have both a generic type constraint and
Is it possible to have both NetTcp bound endpoints, and basicHttp bound endpoints with
Is it possible to have both versions of maven running on the same computer?
is it not possible to have both CLICK and DOUBLE_CLICK on the same display
Is it possible to have a PHP function that is both recursive and anonymous?
Is it possible to inherit from both ViewPage and ViewPage<T>?? Or do I have
Is this possible? I have a solution with both projects, I just want to
Say you have two classes, A and B. Is it possible to instantiate both
Is it possible to have both the XML + Annotation based configuration for MyBatis
I'd like to know if it's possible to have both Linq-to-SQL and Entity Framework

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.