Does anyone know the Tform combo box variable? Also, how do you set it up, like a button is:
Simba Code:button := TButton.Create(form);
with button do
begin
parent := form; // need this line or the button won't show up
width := 100;
height := 25;
top := 100;
left := 150;
caption := 'Start';
onClick := @onButtonClick;
end;
what would it be for a combo box?




Reply With Quote