Hello I want to make different pages in my program. When you open it up it will be on page 1, and theres a next step button. When you click that you go to step 2, where there is a previous step and next step button. I am using this code right now (for example for the first forms next step to go to form 2) :
Code:
Form2.Enabled = True
Form2.Visible = True
Form1.Enabled = False
Form1.Visible = False
But on the bottom taskbar it looks like im closing it and re-opening it. I want it to be solid.