Timer1.start
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Opacity += 0.03
If Opacity = 100 Then
Timer1.Enabled = False
End If
End Sub
Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
Timer2.start
End Sub
Opacity -= 0.03
If Opacity = 0 Then
End
End If
