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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T02:20:14+00:00 2026-05-20T02:20:14+00:00

Basically I have 3 arrays of different types: control = new Control[2] { txtRecordDelimeter,

  • 0

Basically I have 3 arrays of different types:

control = new Control[2] { txtRecordDelimeter, txtFieldDelimeter };
name = new string[2] { "Record Delimiter", "Field Delimiter" };
exists = new bool[2] { false, false };

…essentially I would like to create a loop that checks whether the string existed in an object passed into a constructor, if did, set the bool of the respective index to true and then ammend the respective control with a new value.

Originally I had a bunch of if statements and repeating code so I wanna cut that out with a for loop.

However, for example, when I attempt to reference control[0].whatever I get the same list from IntelliSense regardless of whether or not the control is a text box or a combo box etc.

I’m guessing I’m missing something simple here like not referencing an instance of the control per se, but I’d be greatful if someone could explain what I’m doing wrong or suggest a better way to achieve this!

Thanks :]

  • 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-05-20T02:20:15+00:00Added an answer on May 20, 2026 at 2:20 am

    I think you mean something like this:

    for(int i = 0; i < control.Length; i++)
    {
        TextBox textBox = control[i] as TextBox;
        if(textBox != null)
        {
            if(textBox.Text == name[i])
            {
                exists[i] = true;
                continue;
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am learning about arrays, and basically I have an array that collects a
Basically I have this string $str=word1 word2 word3; I need array( 'word1', 'word2', 'word3'
The Situation I have a table in a DB that contains job types, basically
I have a string that looks a little like Name: xxx xxx Company Name:
I have a pretty simple problem. Basically I have an array called $list that
Basically, I have an array like this: val base_length = Array( 0, 1, 2,
Basically, I have an array of keywords, and a piece of text. I am
Basically, I have an array of strings to search for. If it were only
So, basically I have an NSArray . I want to get an array with
I have a byte array of around 10,000 bytes which is basically a blob

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.