Best way to have sub-form?

  • Thread starter Thread starter Mark B
  • Start date Start date
M

Mark B

On a new Outlook Add-in (C#) I want to have a start-up tutorial that
progresses a user through 7 screens of introductory text and graphics.

How can I have a form that holds these 7 'pages' (with a <<Previous and
Next>> button below).

A programmer here suggested I use a tab control but I don't want though tabs
appearing. When I previously programmed in MS Access we used sub-forms.
 
Mark,

I would use WPF and use a NavigationWindow. It's made explicitly for
this kind of interaction.
 
Back
Top