Quote:
Originally Posted by LuisCésar82
Very good the espectaivas for new CI.
The componetes in current CI (8.5.7.4) can be defined as unchecked?
|
Yes mate, they can. I had the same question and Yener was kind enough to help me about it.
Here is the code you need to work on:
Code:
Components1:= TCheckBox.Create(WizardForm);
with Components1 do
begin
Parent:= WizardForm;
Left:= NewLeftPositionCP;
Top:= TextPositionTop + 130 + MoveDirectoryInfo;
Width:= 13;
Height:= 13;
TabOrder:= 0;
Checked:= Components1V; -> change to False
Visible:= Components1V;
OnClick:= @ComponentsClick;
...
BtnSetChecked(Components1Check,True); -> Change To False
end;
This example is for Component1 only, if you need to change the other components to unchecked state also, just do the same changes as above to each.