Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: zvikorn
  • Content: Threads
  • Order by date
  1. zvikorn

    executable is loaded and takes too much time

    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...
  2. zvikorn

    list of CheckBoxes in a ScrollBox

    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...
  3. zvikorn

    create few checkboxes in runtime

    Hello, Im creating runtime contorl in borland builder: TcheckBox *cBox = new TCheckBox(Form1); I also craete its runtime 'Click' event handler: void __fastcall TForm1::cBoxClick(TObject *Sender) { TCheckBox *ClickedBox = dynamic_cast<TCheckBox *>(Sender); ... ... } I get...
  4. zvikorn

    OnMouseDown for control created dynamicaly

    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...
  5. zvikorn

    Parent property

    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...
  6. zvikorn

    What component includes ScrollBars besides the Form

    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...
  7. zvikorn

    continuing with the checkbox

    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 ...
  8. zvikorn

    create few checkboxes in runtime

    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...

Part and Inventory Search

Back
Top