Hi Buddy,
Create 2 buttons for previous and next in a form(say, current_form). take the previous form as 'prev_form' and next form as 'next_form' then
write a code in the previous button command click event as
prev_form.Show()
current_form.Hide()
write a code in the next button command click event as
next_form.Show()
current_form.Hide()
Please let me know if you have any concerns
126 views
Usually answered in minutes!
×