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

  • Home
  • SEARCH
  • 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 8276423
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T08:22:13+00:00 2026-06-08T08:22:13+00:00

I was given a small task to simply make a button’s text toggle On

  • 0

I was given a small task to simply make a button’s text toggle “On” and “Off” when you clicked on it – it already starts with the text “Off” as it hasn’t been pressed yet, but when you click it changes to “On”. On each alternating click afterwards, the button’s text would ideally keep changing from “On” to “Off”. In my case I thought a simple boolean variable would be the solution as On and Off can be treated as True or False, but not to be…

Anyway here’s the code for the button’s handler I’ve got so far:

private: System::Void toggleButtonText_Click(System::Object^  sender, System::EventArgs^  e) 
    {
      static bool isOn = true;
      if(isOn == false)
      {
       toggleButtonText->Text = "Off";

      }
      else
      {
      toggleButtonText->Text = "On";
      }

}

As you can see, the name of the button is “toggleButtonText”. In the InitializeComponent(void) method, this line enables the default text to “Off”:

this->toggleButtonText->Text = L"On";

Looking at the rest of my tasks, getting this right will give me enough clues to attempt them on my own instead of spending ages on endless Google searches.

  • 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-08T08:22:17+00:00Added an answer on June 8, 2026 at 8:22 am

    You have to update your variable state after toggling the text

      static bool isOn = true;
      if(isOn == false)
      {
         toggleButtonText->Text = "Off";
      }
      else
      {
         toggleButtonText->Text = "On";
      }
      isOn = !isOn; //toggle the flag too
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been given a small task but I'm not able to complete it
I am part of a team which has been given a task to deploy
I am not an expert on PHP. I have been given a task of
I've been given the task to look into using xsl to update a few
Given a string made up of 3 capital letters, 1 small caps and another
I have a fairly small corpus of structured records sitting in a database. Given
I am trying to write a small batch file for a task I do
I have a small task in Flash, that I'm having a little trouble with.
Given a small set of entities (say, 10 or fewer) to insert, delete, or
My task is to extract some data from a given document using Perl-style (or

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.