[Solved] Change label/button text depending of the bool status


You can access your form elements by their Name property.
For example if you have a button named button1, you can edit its Text property like this:

button1->Text = "new name";  

It’s the same for labels, text boxes and many other elements.
About the bool status you say, I don’t know what are you trying to do.

4

solved Change label/button text depending of the bool status