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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T15:36:56+00:00 2026-05-27T15:36:56+00:00

Thanks to help in here I’ve managed to recursively loop through all the controls

  • 0

Thanks to help in here I’ve managed to recursively loop through all the controls on my winform and locate my sub classed control but when I try to update my user defined properties _key and _value the object ctrl does not expose them 🙁
I’m using
ctrlContainer below is the calling form passed as this

foreach (Control ctrl in ctrlContainer.Controls)
{
    // code to find my specific sub classed textBox
    // found my control
    // now update my new property _key
    ctrl._key does not exist :(

    I know the ctrl exists and is valid because ctrl.Text = "I've just added this text" works.
    _key is visible when looking at the control in the form designer.
}

Can anyone give me a hint as to what I’m doing wrong?
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-27T15:36:56+00:00Added an answer on May 27, 2026 at 3:36 pm

    That is because your reference is of type Control (foreach (Control ctrl), which I’m assuming is not your sub-classed control. That reference will only understand members that belong to it, _key presumably belongs to a derived class. Try this:

    foreach (Control ctrl in ctrlContainer.Controls)
    {
        // code to find my specific sub classed textBox
        // found my control
        // now update my new property _key
        if (ctrl is MyControl)
        {
            MyControl myControl = (MyControl)ctrl;
            myControl._key = "";
        }
    }
    

    Or your can change your iterator to find only instances of your control, as suggested by Sebastian. This would be cleaner code.

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

Sidebar

Related Questions

I have a show/hide toggle working well in multiple instances (thanks to help here
Thanks to pbos help and its program (published here , for xoring a big
Thanks for your help! I'd like to output all companyName entries that have uploads
thanks for all the help the last few days. I'm hoping someone knows this
Thanks for the help here: foreach loops & stdclass objects I set up a
I've already got help here for creating a quotation extraction function. Thanks alot, soulmerge!
The following code works almost perfect, thanks to the help received here : import
I currently have this code (thanks for the help from here). I need to
Hi Folks thanks for your help here. I am trying to create a rails
Ok. here's the operations i successfully code so far thank's to your help: Adittion:

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.