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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T19:25:01+00:00 2026-06-06T19:25:01+00:00

I need to get the number after the button to increment in a for

  • 0

I need to get the number after the button to increment in a for loop. For example, button1 becomes button2, etc. I have tried appending a variable which increments but C++ Builder gives an error saying “Button is not a member of TMain.” Is there any way to achieve the end goal or get around this?

  • 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-06T19:25:02+00:00Added an answer on June 6, 2026 at 7:25 pm

    You can’t construct new identifiers from others at run time. The compiler is correct that Button really isn’t a member of your TMain class.

    Instead, build the string name of the component you want, and then call your form’s FindComponent method to get the component with that name.

    for (int i = 1; i <= 2; ++i) {
      std::string name = "Button" + IntToStr(i);
      TButton* button = dynamic_cast<TButton*>(this->FindComponent(name));
    }
    

    That requires that the buttons’ Name properties be set accordingly.

    Another solution is to forego the component names and put your objects in a proper container, like a vector. For example, you can override the Loaded method (which is where you can be sure all your form’s components have been created) and fill a vector there:

    void TMain::Loaded() {
      TForm::Loaded();
      this->m_buttons.push_back(Button1);
      this->m_buttons.push_back(Button2);
    }
    

    Now when you want to iterate over your buttons, you just iterate over the vector instead:

    for (std::vector<TButton*>::const_iterator it = m_buttons.begin();
         it != m_buttons.end();
         ++it) {
      // ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to get the decimal part out of a float number, for example:
string num =123.12400; I need to get the number of characters after the '.'
So, i need to get max number of field called chat_id and after that
I have two combobox. I need get some value from first combobox1 after combobox1
i need to get number of order highlighted element (by javascript, jquery): <li>A</li> <li>B</li>
I need to get the number of days contained within a couple of dates
AssemblyName.GetAssemblyName().Version.ToString() will give the version number ,,but i need to get version number from
I need to get the square root of a 210 digit number accurately, I
I need to get the system locale to do a number of things, ultimately
I need get all items these have no categories int? categoryId = null; var

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.