Posts

Showing posts from April, 2013

Resource Explorer (DLL/Exe) using C#

Image
After long time we are with the Resource Explorer. This is verymuch usefull for the resource management in the Application/DLL. Purspose     You are having the images/icon in other dll then you can load and use that particular image/icon using the below concept Source Code: public partial class frmAssemblyHandling : Form { public frmAssemblyHandling() { InitializeComponent(); } private void btnSelectDLL_Click( object sender, EventArgs e) { //the required resources to filter from the available ArrayList arImageFilter = new ArrayList (); arImageFilter.AddRange( new string [] { ".png" , ".ico" , ".bmp" , ".png" }); OpenFileDialog fd = new OpenFileDialog (); fd.Filter = "DLL Files (*.Dll)|*.dll|Application Files (*.exe)|*.exe" ;