Users Pricing

forum

Home Forums How to create a copy of the items in a domainupdown C# – MindStick

How to create a copy of the items in a domainupdown C#

Anonymous User 3022 23 Dec 2013

I was able to copy decimal values from a numericUpDown box fine, but when I try to copy items from a DomainUpDown box with a predefined collection of items to a new DomainUpDown box I run into problems since I think it may be an array of strings. Here is what I have so far:

private DomainUpDown sentNUD2;
private void domainUpDown_Click(object sender, EventArgs e)
{
    formPopUpData2 newForm = new formPopUpData2();
    this.sentNUD2 = (DomainUpDown)sender;
    DomainUpDown copiedNUD = new DomainUpDown();
    for (int i = 0; i <= this.sentNUD2.Items.Count-1; i++)
    {
        copiedNUD.Items[i] = this.sentNUD2.Items[i];
    }

My code above is similar to what I did with the numeric boxes, but the addition is the for loop for the array. I keep getting an out of bounds error. Is there an easier way to copy items from one DomainUpDown to another? Am I on the right track? Any help is appreciated.

Thank you.


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md