Do I like to fail people?![]()
This is my suggestion for a fade-out timer (I used the same algorithm as the fade-in timer...):
VB Code:
If Me.Opacity > 0 then Me.Opacity -= 0.01 Else FadeOutTimer.Enabled = False End If
Let's just get one point clear: here you're dealing with time-dependent values, this makes using absolute values useless, you should use the range limitation ways (<, >, <= or >=).




Reply With Quote