[Solved] Creating a form that updates when ‘Next’ button is clicked. (c#) [closed]
In your form design, make the base layer a TabControl and then create tabs for each “page”. Ensure that your button is not on a tab page, but on the base form. Then, handle the button click, switching tabs to a new “page” each time. Keep track of the current page using a member variable … Read more