Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 1260

Summary: TeeEdi3D Access Violation
Product: VCL TeeChart Reporter: narcís calvet <narcis>
Component: EditorsAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: normal CC: sistemas
Priority: High    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=3&t=15675&sid=35712593e0633d725013ad99d743f83d#p69589
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description narcís calvet 2015-07-30 06:30:13 EDT
Dropping a chart in a form, using the code below and choosing one of the options presented in the editor throws an Access Violation error.

uses TeeEdi3D;

procedure TForm1.FormCreate(Sender: TObject);
begin
  with TFormTee3D.Create(Self) do
  try
    ThePanel:=Chart1;
    Align:=alNone;
    BorderStyle:=TeeBorderStyle;  // bsDialog
    Position:=poScreenCenter;
    PageControl1.ActivePage:=TabViews;
    PageControl1Change(PageControl1);
    ResetTab3D:=False;
    ShowModal;
  finally
    Free;
  end;
end;
Comment 1 sistemas 2018-01-29 20:49:38 EST
Hi, i want to know if you plan to solve this bug? 
Im using TChartPro v2017.22.170619 32 bit VCL with Delphi XE7 and the bug is still present.

Thanks in advance.