dynamic_sysop
Senior Contributor
hi guys , this is probably useless and someone's probably come up with a similar thing no doubt, but i have devised a bit of code to allow a second form to be loaded from faded to normal ( Opacity ).
Dim strVal As String
Dim i As Integer
Dim op As New OpacityConverter()
For i = 1 To 100
strVal = i
Form1.ActiveForm.Opacity = op.ConvertFromString(strVal)
Next i
basically it loads the form ( that was the actuall main form, not a seperate form just for testing ) and fades it in from virtually unvisible to normal form view. looks nice when loading certain forms rather than a new form just appearing.
Dim strVal As String
Dim i As Integer
Dim op As New OpacityConverter()
For i = 1 To 100
strVal = i
Form1.ActiveForm.Opacity = op.ConvertFromString(strVal)
Next i
basically it loads the form ( that was the actuall main form, not a seperate form just for testing ) and fades it in from virtually unvisible to normal form view. looks nice when loading certain forms rather than a new form just appearing.