Hi,
I would like to change the cursor type on run time( by using code).
How can I do that, i didn't find anything like "AxTChart.Cursor" or similar?
Thanks,
Petar
Access Cursor selection by code
Re: Access Cursor selection by code
Hello Petar,
I think you can do something as next lines of code:
Please, confirm us if previous lines of code works as you expect?
I hope will helps.
Thanks,
I think you can do something as next lines of code:
Code: Select all
TChart1.OriginalCursor = -21
I hope will helps.
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Access Cursor selection by code
Thanks Sandra,
in fact in .NET this property does not exists ( instead I used ctlCursor)
Cheers
Petar
in fact in .NET this property does not exists ( instead I used ctlCursor)
Cheers
Petar
Re: Access Cursor selection by code
Hello Petar,
Could you tell us which version of TeeChartAxtivex are you using now? So in last version of TeeChartActivex and .Net property originalCursor exist as you can check in next lines of code:
Thanks,
Could you tell us which version of TeeChartAxtivex are you using now? So in last version of TeeChartActivex and .Net property originalCursor exist as you can check in next lines of code:
Code: Select all
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
AxTChart1.OriginalCursor = -21
End Sub
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |