access to forms at design-time
-
hello, does anyone know a way to access all the Forms that are available in an application at design-time in Visual Studio? I need to get access even to Forms that are currently not opened in Visual Studio, getting the class names of these forms would be enough, then I could instantiate them by myself. Thank you
-
hello, does anyone know a way to access all the Forms that are available in an application at design-time in Visual Studio? I need to get access even to Forms that are currently not opened in Visual Studio, getting the class names of these forms would be enough, then I could instantiate them by myself. Thank you
Have you tried to click on a project, then go to the project menu at top of screen and select Show all files. This will display all files currently inside that project, even those that have not yet been added to visual studio.
He who laughs last is a bit on the slow side
-
Have you tried to click on a project, then go to the project menu at top of screen and select Show all files. This will display all files currently inside that project, even those that have not yet been added to visual studio.
He who laughs last is a bit on the slow side
thanks for the help....but I want to get all the forms programmatically at design-time...I need this for a custom control I develop.