How do you set or adjust opacity of controls during runtime? (buttons/textbox/etc)
I've tried this
Public Sub setOpacity(ByVal opacity As Integer)
Me.BackColor = Color.FromArgb(opacity, 255, 255, 255)
End Sub
But error returns that it controls does not support opacity.
I want my controls to load on runtime with fade-in effects.
Any links to any tutorial?