change cursor when zooming
Posted: Thu May 18, 2006 8:01 am
Hi,
I want change cursor's feature and the color of rectangle. How can I do?
I want change cursor's feature and the color of rectangle. How can I do?
Steema Software - Customer Support Forums
http://216.92.243.79/support/
Code: Select all
Private Sub Form_Load()
TChart1.Series(0).FillSampleValues 10
With TChart1.Zoom
.Pen.Color = vbRed
.Pen.EndStyle = esRound
.Brush.Color = vbWhite
.Brush.Style = bsBDiagonal
End With
End Sub