how to create webapplication at runtime in VS2005
Hi friends,
I have a problem. we are developing designer using Windows application.from this application through coding i open a new instance of IDE by using EnvDTE Object.Now I want to add a new website project to that new instance IDE.
When excuting my Windows application at runtime one new webapplication should create and one usercontrol form to be added to that project.
Pls give me suggestions how to achieve this problem.
I am using VS2005
the existing code for creating new instance is as follows
Dim objwin As EnvDTE.DTE =
CType(Microsoft.VisualBasic.Interaction.CreateObject("VisualStudio.DTE"), EnvDTE.DTE)
objwin.ActiveWindow.Activate()
objwin.ExecuteCommand("View.SolutionExplorer")
objwin.ExecuteCommand("View.ToolBox")
Regards,
Ramesh

