Hi,
I am creating my controls(aprox. 1000 controls) in the application dynamically, with the 'new' operator when the form is created. I'm having some arrays of pointers for the instances, and some other structures.
The problem is that when I am running the application, it takes 20 seconds till...
Hi,
I create a groupList and fill it with many CheckBoxes.
bacuase of so many CheckBoxes, the ScroolBox control gets its Vertical Scroll Bar.
Whenever I try to click (check/uncheck) on a CheckBox in the middle of the list, the row of this CheckBox skips down to the bottom of the ScrollBox, and...
Hello,
I would like to create a CheckBox dynamicaly when the form is created.
The code will look like that:
TCheckBox *cBox=new TCheckBox (MainForm);
cBox->Name=......;
cBox->Parent = MainForm;
.
.
.
Q: I want to do something when the user click the CheckBox at runtime.
Since the CheckBox was...
Hi again,
I have a different page control with a Tab called 'maintenance', within the Form.
the code is:
TGroupBox* Group = new TGroupBox(MainForm);
Group->Parent = MainForm->maintenance;
When the second line is executed, another process is executed (within a dos command window). In...
Hi,
I have to use the GroupBox which includes many rows of checkboxs that will be created dynamically.
If I create this GroupBox on the Form, whenever the amount of rows gets over the height of the GroupBox, The Form's ScrollBards are added by default.
But I create the GroupBox on a PageControl...
Hi Guys,
your answers are great.You helped me a lot.
now, I have a minor problem. I have a different page control with a Tab called 'maintenance'.
the code (as you recommended) is:
TGroupBox* Group = new TGroupBox(MainForm);
Group->Parent = MainForm->maintenance;
Group->Width = 600 ...
Hello,
I would like to ask the user in the GUI, for a real number, and according this number, to create lines of checkboxes. Which means, if the user will enter as an input number 8, the GUI will show on the form, 8 lines ,each line contains one checkbox. It does not matter for me, which...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.