Randy,
There are a lot of things that can be done with the Wizard control and it is designed to make adding pages and inserting pages very easy, both within the designer and at run-time. The first thing you need to learn about is the control designer (shown in the image below).

This is opened using the little arrow at the top right of the control when selected. In addition to creating a page on a form, you can create a page class which can then be added by selecting the "Existing Page" option. To create a classable page, create a new item through the solution explorer and choose the SF Wizard Page template.
There are a number of functions on a wizard control to change the state of buttons and dynamically insert pages. The first thing to learn about is the PageCollection property which houses all of the pages. You can programmatically Add, Remove, and Insert pages. This is just a collection and has all features as such.
Me
.WizardControl1.PageCollection.Add(MyPage)
Me.WizardControl1.PageCollection.Insert(2, MyPage)There are other methods to control the button states programmatically.
Me
.WizardControl1.SetNavigationButtonStatus(WizardNavigationButtons.Next,WizardNavigationButtonStatus.Enabled)In addition to all of the methods and properties that can be set, there are events on both a page and on the wizard control itself.
Page Events
- BackClicked
- NextClicked
- PageActivated
Wizard Control Events
- BackClicked
- CancelClicked
- NextClicked
- FinishClicked
- NextClicked
- PageActivated
This is just a basic overview. But the best thing is to create a project and play with the properties and page settings. There is also a sample in the Samples and Solutions section of the forum that has a wizard example within it. It is the UI Control sample. http://forum.strataframe.net/Topic1988-17-1.aspx
Hope this gets you started. Let me know if you have more questions.