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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T13:55:45+00:00 2026-05-11T13:55:45+00:00

I have been trying to find out how to bind data to a System.Windows.Forms.DomainUpDown()

  • 0

I have been trying to find out how to bind data to a
System.Windows.Forms.DomainUpDown() control.

Currently I have only come up with:

        private void Init()         {             List<string> list = new List<string>();             list = get4000Strings(); //4000 items              foreach (string item in list)             {                 domainUpDown1.Items.Add(item);              }          }          private List<string> get4000Strings()         {             List<string> l = new List<string>();             for (int i = 0; i < 4000; i++)             {                 l.Add(i.ToString());             }             return l;         } 
  • 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-11T13:55:46+00:00Added an answer on May 11, 2026 at 1:55 pm

    The DomainUpDown.Items collection has an AddRange() method that takes an ICollection (implemented by List<T>), so you could just do

    private void Init() {   List<string> list = new List<string>();   list = get4000Strings(); //4000 items   domainUpDown1.Items.Clear();   domainUpDown1.Items.AddRange(list); } 

    However, if you have that much items to show, I would suggest you use a ComboBox having DropDownStyle set to DropDownList. It will allow you to databind directly to the list (e.g. comboBox1.DataSource = list;), especially if the list changes often, as you won’t have to refill the ComboBox each time, just change the datasource…

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

Sidebar

Related Questions

I have been struggling for a few days trying to find out how come
I have been trying to find out how game engines deal with asset compression.
I have been trying to find out why the following lines of code do
I have been trying to find out what the difference is between the IS
I have been trying to find out if MSbuild can send an email to
I have been trying to find out more about Voldemort but it doesn't seem
I have been trying to find out total count of rows in each tables
I have been trying to find out exactly what is the required alignment of
I have been trying to find out how to populate a dropdown box in
I have been trying to find out the problem to this for a day

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.