Wizard in Visual C++ 2005

87 Views Asked by At

I'm trying to put together a wizard for one of my new applications. I have been searching the web for a decent tutorial but I am having no luck. I've tried this tutorial and this website but neither have worked for me. Does any one know a good place to start from? I am using Visual C++ 2005 and using .NET . I want to create a wizard that will follow the structure of the following:

  • Enter Name (edit box)
  • Are You Sure you want to name it this (confirmation)
  • Enter Parts (two list boxes where you can add and remove from one and another
  • Are you sure you have added all the parts (confirmation box)

Sorry if that's poorly explained, I will gladly try and clarify any extra details needed, I just need a good starting point basically. Thank you in advance.

1

There are 1 best solutions below

3
On

First tutorial is for win32 project, so not .NET, and second one is for C#/VB.net.

I'd start with the second one, since it's for .NET, but you have to translate c# code to C++/CLI, which may be difficult if you're new to C++/CLI.