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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T10:00:36+00:00 2026-05-12T10:00:36+00:00

I have no idea where to start. i tried DataTable but it didn’t work.(This

  • 0

I have no idea where to start. i tried DataTable but it didn’t work.(This is an easy question 🙂 )

I tried everything

{
    var test = new DataTable();
    test.Columns.Add("test");
    test.TableName = "test";
    test.Columns.Add("test");

    comboBox1.DataSource = test.XXXX ;

}
  • 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-12T10:00:37+00:00Added an answer on May 12, 2026 at 10:00 am

    Assuming you mean winforms, something like:

        DataTable test = new DataTable();
        test.TableName = "test";
        test.Columns.Add("foo", typeof(string));
        test.Columns.Add("bar", typeof(int));
        test.Rows.Add("abc", 123);
        test.Rows.Add("def", 456);
    
        ComboBox cbo = new ComboBox();
        cbo.DataSource = test;
        cbo.DisplayMember = "foo";
        cbo.ValueMember = "bar";
    
        Form form = new Form();
        form.Controls.Add(cbo);
        Application.Run(form);
    

    (in particular, SelectedValue should give you the 123 and 456 – useful for ids, etc)

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

Sidebar

Related Questions

I have no idea where to start with this one. I have a confirmation
I have no idea where to start with this one: I have a database
I apologize in advance for the rambling nature of this question, but I have
I tried so many links on this question but couldn't find any help on
I followed HaskellWiki, but I've still have no idea that how to start it.
I have this function which used to work, but apparently decided to take a
I am trying to obtain this design: I just have no idea how to
This may not seem like a development question but there is a link. I
I tried Googling this but not sure what's the best thing to look for.
I have Intellij IDEA 9.0.4 set up to start a tomcat webserver and deploy

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.