Hey,

I have four labels in a form: label1, label2, label3, and label4. Now, if this was VB.NET, I would have used the following code to change their contents without having to type the code for each one separately:

For I = 1 To 4
Me.Controls("label" & I).Text = "Some text"
Next

I was wondering if there is an equivalent method to perform this task in C# as well.

Thank you for your time :)

Recommended Answers

All 2 Replies

This will do it.

for (int I = 1; I <= 4; I++)
            {
                this.Controls["label" + I].Text = "Some text";
            }

This will do it.

for (int I = 1; I <= 4; I++)
            {
                this.Controls["label" + I].Text = "Some text";
            }

Omg, thank you so much! I used ()s instead of []s and it kept giving an error. Once again, thanks :)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.