Hi,
i'm using tdxTilecontrol and create my item with following code:
try tctilecontrol.BeginUpdate;
while not mydataset.Eof do begin
AItem := tctilecontrol.createItem(true); AItem.Glyph.Image.LoadFromFieldValue(mydataset.FieldByName('PHOTO').Value);; AItem.Glyph.Align := oaMiddleRight; AItem.Glyph.Image.resize(60, 60); AItem.Tag := StrToInt(mydataset.FieldByName('TA_PER_ID').AsString); AItem.Style.Font.Size := 10; AItem.Style.Font.Color := clBlack; AItem.Text1.Value := mydataset.FieldByName('NAM').AsString + ' ' + mydataset.FieldByName('FSTNAM').AsString; AItem.Text1.IndentHorz := 5; AItem.Text1.IndentVert := 10; AItem.Text2.Value := mydataset.FieldByName('PHNB').AsString; AItem.Text2.Align := oaTopLeft; AItem.Text2.IndentHorz := 10; AItem.Text2.IndentVert := 30; AItem.IsLarge := true; AItem.Style.GradientBeginColor := RGB(242, 199, 119); AItem.Style.GradientEndColor := RGB(242, 199, 119); AItem.OnClick := OnItemClick; aPer.Next; end; finally tctilecontrol.EndUpdate; end;
procedure TfrExposes.OnItemClick(Sender: TdxTileControlItem);begin tePersonne.Properties.OnChange := nil; try label.Text := Sender.Text1.Value; finally tePersonne.Properties.OnChange := tePersonnePropertiesChange; end;end;
To clear the tdxtilecontrol i m using:
tcxtilecontrol.BeginUpdate(); try for I := pred(tcxtilecontrol.Items.Count) downto 0 do begin tcxtilecontrol.Items.Delete(I); end; finally tcxtilecontrol.EndUpdate(); end;
And i got a violation acces error.
This error is due to the resize procedure (when i comment it, it works)
Thx for your help
Hello,
Would you please provide us with a small sample project to precisely replicate your scenario on our side?
Hello,
find a sample project.
You can use textedit or button …
Maybe textedit, you must change value few times …
Thx
Thank you for your sample project. I have forwarded this ticket to our developers for research.
Thx for working on a fix, we nedd it urgently, project is going live soon
I donwloaded it, and tested it, for the moment no more errors.
Thx
Thank you for your reply. I have just published a more stable and fix in this ticket. Please redownload and reapply it.