Solved disapear text

FahadTiger

Member
Local time
Today, 20:56
Joined
Jun 20, 2021
Messages
120
hello everyone
Is there a code to make the text disappear gradually from label
 
Hmm, there is no opacity in Access (that I know of). Perhaps you could change the font color to different shades until it's invisible. Or, maybe there's an API for it.
 
you could just use

Code:
For i = 0 To 255
   
        Me.Label0.ForeColor = RGB(i, i, i)
        Pause 0.01

    Next i
 

Users who are viewing this thread

Back
Top Bottom