Ok...
My Goal: To make my form fade out when I exit the program...
My Problem: I cannot reset A as A-.05

Here is what I did

I set A as Integer
A=1 BLAH BLAH BLAH

Then I have my button and I enabled my timer

I set my timer to 100 (1/10 of a second)
In the timer code i have this...

MyBase.Opacity=(A-.05)

And it does that every 1/10 of a second, the problem then is that it always thinks A=1

I want it to reset A to A-.05 (.95) so that the opacity keeps getting smaller

I know that on TIBASIC I would simply do A-.05->A But that does not seem to work in VB.NET


So what do i Do? :-D