hi,
I have windows application which have multiple modules. Each modules i have separate windows application with output as library and call this forms in main application.
Now in my main application i have About Box which shows the Main application assembly information. I also need to show what are the modules installed with version like our visual studio about box . I mean like the text area shown in the below image
I need exactly the installed products in the image . How can i find the installed modules.
My thinking:
From the application start up folder i can find the UI module applications' dll . Using reflection i load this dll and take the assembly info of each dll included in the folder.
Any other better method for this?