When using checkboxes on android, the code does not recognize the checked state, whether checked in Object Inspector or checked while running,
For example :-
if not CheckBox2.Checked then
begin
Seek(F1, startHeader[StrToInt(trim(Edit2.Text))]);
pp := indexHeader[StrToInt(trim(Edit2.Text))];
Seek(F2, startSplits[StrToInt(trim(Edit2.Text))]);
vv:=1000*StrToInt(trim(Edit2.Text))-1;
end else begin pp := 1; vv:=0; end;
or
if CheckBox2.Checked then AlStringGrid1.RowCount:=AlStringGrid1.RowCount+maxvv else AlStringGrid1.RowCount := AlStringGrid1.RowCount+1000;
WidgetSet=customdrawn
programming OS is WinXP
target OS is Android
Regards