Hi
I'm developing a "Flashing Led"-ocx using a timer and a shape.
I created this property:
Code:
Public Property Get Flashing() As Boolean
    tmrLed.Enabled = Flashing
End Property

Public Property Let Flashing(ByVal NewFlashing As Boolean)
    Flashing = NewFlashing
    PropertyChanged "Flashing"
End Property
but when I try to change this property while debugging, I get a "Out of stack space"-error.

I need to be able to turn the timer on/off.

What am I doing wrong?

Edited by onerrorgoto on 02-23-2000 at 06:25 AM