Search found 9533 matches

by Yeray
Wed May 28, 2008 8:59 am
Forum: ActiveX
Topic: Clickonce isolation problem
Replies: 3
Views: 6280

Hi Tom,

Thanks for your project and feedback. I've been able to run your application and reproduce the 65 warnings.

I've added this issue to the wish list to be investigated for future releases (TA05013078).

By the meanwhile, I'm glad to see that you and your customer are at least satisfied.
by Yeray
Fri May 23, 2008 8:56 am
Forum: ActiveX
Topic: Clickonce isolation problem
Replies: 3
Views: 6280

Hi Tom, I'm afraid we are not too much familiarized with isolated and clickonce features but, after some investigation through the web, and taking in consideration what's explained here and here , we made a vb project in a vista machine with visual studio 2008 and worked fine in another vista machin...
by Yeray
Wed May 21, 2008 7:54 am
Forum: VCL
Topic: Unhappy out of box experience.
Replies: 4
Views: 5169

Hi JeffS,

This seems really similar to this or this, for example.

Please check that the search path and the packages installed are the correct ones.
by Yeray
Tue May 20, 2008 10:32 am
Forum: VCL
Topic: How to clip drawn points in a chart ?
Replies: 2
Views: 5851

Hi Marck, Firs of all I'd like to say that this should be easier with teechart v8 since there is the SubChart tool and with it you could work as with 4 different charts in the same chart. So these separations should work by default as each chart would perform its own clipping. In the following examp...
by Yeray
Tue May 20, 2008 7:55 am
Forum: ActiveX
Topic: Vbscript with Teechart 7
Replies: 2
Views: 4454

Hi nthan, Which TeeChart version are you exactly using? Please, ensure that you are running the newest AX version available at the web (v7.0.1.4). This code works fine for me here with this version: Private Sub TChart1_OnCursorToolChange(ByVal Tool As Long, ByVal X As Long, ByVal Y As Long, ByVal XV...
by Yeray
Thu May 15, 2008 11:12 am
Forum: VCL
Topic: CursorTool Question
Replies: 5
Views: 7422

Hi ChZiegelt, This property should work if you are using TeeChart v8 and TeeTools unit is included in your project. Nevertheless, since we are going to deactivate the cursor tools, you could simply delete these lines from FormCreate: ChartTool1.ScopeStyle := scsEmpty; ChartTool1.Style := cssScopeOnl...
by Yeray
Thu May 15, 2008 8:46 am
Forum: VCL
Topic: CursorTool Question
Replies: 5
Views: 7422

Hi ChZiegelt, If you want to continue using your cursor tools to update the state of each point, I suggest you to use a table to store the state of each point (in order to allow more than one point to stay in the same state). And update this table at OnChartTool change event. Note that in the follow...
by Yeray
Wed May 14, 2008 7:59 am
Forum: VCL
Topic: CursorTool Question
Replies: 5
Views: 7422

Hi ChZiegelt, If you only want to mark the last clicked point, let me suggest you another way to achieve that. I think you don't need a cursor tool. Simply using OnClicked event from the series to store the index of the point that has been clicked and GetPointerStyle event to modify the pointer of t...
by Yeray
Tue May 13, 2008 9:00 am
Forum: VCL
Topic: QReport 5, Delphi 2006, and TCharts 8.02
Replies: 1
Views: 5475

Hi Lucien,

Have you tried to create your own packages following the QuickReport instructions in this article?

If you are not able to obtain them, we'll send you working packages for Delphi 2007 that should be easier to modify and adapt to your environment.
by Yeray
Tue May 13, 2008 8:54 am
Forum: ActiveX
Topic: Unicode problem with TeeChart v8.0.0.3
Replies: 7
Views: 8769

Hi Studylog, I've tested it for VB6 and I'm not able to reproduce it. Here is the code I used and works for me: Private Sub Form_Load() Dim mystring As String TChart1.Aspect.View3D = False mystring = TChart1.Environment.CodeUTF8String("EXAMPLE " & TChart1.Environment.DecodeUTF8String("@U#4558414D504...
by Yeray
Thu May 08, 2008 9:26 am
Forum: ActiveX
Topic: Coordinates
Replies: 1
Views: 5194

Hi Hermes, You could convert chart screen coordinates to form screen coordinates simply adding the chart's position to the desired coordinate. Something like this: FormXCoord = ChartXCoord + TChart1.Left FormYCoord = ChartYCoord + TChart1.Top But note that chart coordinates are expressed in pixels a...
by Yeray
Wed May 07, 2008 10:02 am
Forum: VCL
Topic: Pie-drawing
Replies: 1
Views: 3440

Hi Tafik,

Yes, I could reproduce it and added to the wish list to be fixed in further releases (TV52013033).
by Yeray
Tue May 06, 2008 9:54 am
Forum: ActiveX
Topic: paging bug when axis.automatic=.f.
Replies: 3
Views: 5354

Hi Tamás, I think this time it's correct. If you fix minimum and maximum values for bottom axis, then they won't change automatically to show another page. Maybe you would like to change those minimum and maximum values manually when the according button is pressed, but paging will only work with au...
by Yeray
Tue May 06, 2008 9:50 am
Forum: ActiveX
Topic: Legend box positioning
Replies: 6
Views: 9351

Hi Matt, If you want to set a right margin according to the legend width, you could do as follows: Private Sub Form_Load() With TChart1 .AddSeries scBar .Series(0).FillSampleValues 25 .Legend.Top = 0 TChart1_OnResize .Environment.InternalRepaint .Panel.MarginUnits = muPixels End With With TChart1.Le...
by Yeray
Tue May 06, 2008 8:01 am
Forum: VCL
Topic: SOLVED - Need to stop updating of TCHart
Replies: 2
Views: 4474

Hi ChZiegelt,

The property you are looking for may be this one:

Code: Select all

Chart1.AutoRepaint := false;