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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T18:58:54+00:00 2026-05-29T18:58:54+00:00

My data gridview is not bound to a datasource and it has a combo

  • 0

My data gridview is not bound to a datasource and it has a combo box name Test2. I am inserting string in it run time.Following is my code

DataGridViewComboBoxColumn comboBox = (DataGridViewComboBoxColumn)dataGridView1.Columns["Test2"];
      string[] arr1 = new string[] { "a", "b", "c" };
      comboBox.Items.AddRange(arr1);

But rather array of strings i am interested in using List<string>.For that code i wrote is this

DataGridViewComboBoxColumn comboBox = (DataGridViewComboBoxColumn)dataGridView1.Columns["Test2"];
        List<string> data = new List<string>();
        data.Add("a");
        data.Add("b");
        data.Add("c");
        comboBox.Items.AddRange(data);

But now datagridview combo box is showing (Collection) string only. Any idea how can i make List<string> working.Workaround is this I can do is change List<string> to array of strings but it will be inefficient.

  • 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-29T18:59:01+00:00Added an answer on May 29, 2026 at 6:59 pm

    Not sure but can you do something like this

    DataGridViewComboBoxColumn d = new DataGridViewComboBoxColumn(); 
    List<string> data = new List<string>();        
    data.Add("a");         
    data.Add("b");         
    data.Add("c"); 
    d.DataSource = data ; 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Regarding gridviews that are not bound to a Data Source Control: In most GridView
I have string column with numbers in a datagridview.It is not bound, I would
I am inserting a column in a DataGridView programmatically (i.e., not bound to any
I have a GridView and when some data has been inserted I have called
I have a DataGridView which is data-bound to a BindingList. My DataGridView also has
I have a GridView that is bound to a SQL Data source. I have
A DataGridView bound by this code does not display information as expected: dataGridView1.DataSource =
I have a gridview data and this gridview have subgrid too. in the first
How can I export a GridView's data to a Microsoft Excel 2007 file? Also,
I have a GridView control on an ASP page, which I've bound to a

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.