I dunno if this helps but i tried this to fade on a form.....
Public Sub mainload()
Dim sngOpacity As Single
Mainform.Refresh()
For sngOpacity = 0 To 1 Step 0.04
Mainform.Opacity = sngOpacity
' Let the form repaint itself.
Mainform.Refresh()
' Create a delay.
System.Threading.Thread.Sleep(10)
Next
Mainform.Opacity = 100%
End Sub
I dunno if this helps but i tried this to fade on a form.....
Public Sub mainload()
Dim sngOpacity As Single
Mainform.Refresh()
For sngOpacity = 0 To 1 Step 0.04
Mainform.Opacity = sngOpacity
' Let the form repaint itself.
Mainform.Refresh()
' Create a delay.
System.Threading.Thread.Sleep(10)
Next
Mainform.Opacity = 100%
End Sub
Thats the opacity of the form, controls have no.opacity