forum

Home / DeveloperSection / Forums / How to create a copy of the items in a domainupdown C#

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

Anonymous User 2462 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.


c# c# 
Updated on 23-Dec-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By