F FahadTiger Member Local time Today, 16:15 Joined Jun 20, 2021 Messages 120 Jul 13, 2021 #1 hello everyone Is there a code to make the text disappear gradually from label
theDBguy I’m here to help Staff member Local time Today, 06:15 Joined Oct 29, 2018 Messages 22,521 Jul 13, 2021 #2 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.
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.
moke123 AWF VIP Local time Today, 09:15 Joined Jan 11, 2013 Messages 4,749 Jul 13, 2021 #3 here's TDBG's idea in action Attachments label fade.accdb label fade.accdb 420 KB · Views: 177
F FahadTiger Member Local time Today, 16:15 Joined Jun 20, 2021 Messages 120 Jul 13, 2021 #4 Yeeeeees.. thank you so much thats what I Wanted can I do it in Form load event ? moke123 said: here's TDBG's idea in action Click to expand...
Yeeeeees.. thank you so much thats what I Wanted can I do it in Form load event ? moke123 said: here's TDBG's idea in action Click to expand...
C CJ_London Super Moderator Staff member Local time Today, 14:15 Joined Feb 19, 2013 Messages 17,450 Jul 13, 2021 #5 you could just use Code: For i = 0 To 255 Me.Label0.ForeColor = RGB(i, i, i) Pause 0.01 Next i