Bug Report Q475545
Visible to All Users

An AV occurs when destroying a TdxGPImage object whose image was loaded from a file or stream and immediately after that was resized via a TdxGPImage.Resize method call

created 12 years ago

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

Show previous comments (3)

    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

      DevExpress Support Team 12 years ago

        Thank you for your reply. I have just published a more stable and fix in this ticket. Please redownload and reapply it.

        Answers approved by DevExpress Support

        created 12 years ago (modified 12 years ago)

        We have fixed the issue described in this ticket and will include the fix in our next maintenance update. To apply this solution before the official update, request a hotfix by clicking the corresponding link for product versions you require.

        Note: Hotfixes may be unavailable for beta versions and updates that are about to be released.

          Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

          Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.