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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T23:10:13+00:00 2026-06-15T23:10:13+00:00

I know how to define an array of int[i], byte[i], and so on. Love

  • 0

I know how to define an array of int[i], byte[i], and so on. Love it because I can use the for loop to run them. Now I am thinking of doing the same thing with fancy objects like textbox, button, label, etc… I wonder if that is possible.

In case it is, how can that be done? And how will the name of the object be? something like mytextbox[1], mylabel[2]?

  • 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-06-15T23:10:14+00:00Added an answer on June 15, 2026 at 11:10 pm

    That’s exactly right.

    TextBox[] myTextBoxes = new TextBox[10];
    

    Or, you can create an array of type Control and use it with any sort of control:

    Control[] myControls = new Control[10];
    myControls[0] = new TextBox();
    myControls[1] = new DropDownList();
    

    In order to add these to your Form, you’ll have to add each to the Controls property of the form dynamically.

    foreach(Control control in myControls)
    {
        Controls.Add(control);
    }
    

    You’ll have to set the properties of each control in your code behind as well, such as the Id, the Text, etc, as well as the Height, Width, Top and Left. That is how you’ll place each control where you want on your form.

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

Sidebar

Related Questions

As we know, we can use int (*p)[10] to define a pointer which points
I know I can define new structs in ruby by doing Person = Struct.new(:first_name,
I know that one can define an 'expected' exception in JUnit, doing: @Test(expect=MyException.class) public
I know in javascript if I want define an array,I use: var arr=new array();
I know I can define default parameters in python, but can I do so
As I know I can define a new Enum DataFormat at the my project
I'd like to know how can I define two signatures for the constructor with
One can easily define a function that accepts a 1d array argument like this:
Quick question. When you are accessing a character array, I know you can set
I would like to know how I define multiple containers in Maven, one for

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.