This is my code:
Private Sub NextForm()
Form2.Show()
Me.hide()
End Sub
Problem: The first form fades out and the second form fades in. Between the transition of Show() and Hide(), the actual desktop is seen.
The only solutions that I could think of is;
1. Not to hide the first form while showing the second form.
2. Actually not switch forms just switch controls.
Solution: I want it too look like the transition is instantaneous without seeing the desktop, is there any simpler way to do this?.