August 2010
Intermediate to advanced
1224 pages
34h 17m
English
Each wizard consists of two major components: a class that contains the code (and user interface) for the wizard and a .vsz file that provides information about the wizard to Visual Studio.
IDTWizard InterfaceTo hook into Visual Studio’s wizard engine, your Wizard class must implement the EnvDTE.IDTWizard interface. The IDTWizard defines a single method, Execute, that is called by Visual Studio whenever the wizard is launched. Here is the prototype for the IDTWizard.Execute method (in C#):

The arguments passed to the Execute method are used to link the wizard to the Visual Studio environment and to pass relevant ...