MK.BlackCoffee


In Vs.Net 2005, I can implement CreateToolWindow2 create new window with User Control and can not with the Window Form type.But i need create the new window just like "Go To"(in Edit menu) Command window.so ,which function or interface can help me to implement

Thanks




Re: How to create a window just like "Go To" Command window

Carlos Quintero - MVP


Modeless windows are created as toolwindows calling the CreateToolwindow function with a .NET usercontrol, but modal windows like the GoTo Line window can be created as Windows Forms and showing them modally.






Re: How to create a window just like "Go To" Command window

MK.BlackCoffee

Thanks, Carlos