Click to See Complete Forum and Search --> : icons embedded in project


dubem
August 30th, 2002, 02:12 PM
Hi,

I have embedded some icons in my project and I can get them like this

ResStream = System.Reflection.Assembly.GetExecutingAssembly.GetManifestResourceStream("harfan.Imprimer.ico")
Dim BMP As System.Drawing.Bitmap = System.Drawing.Bitmap.FromStream(ResStream)


It works well. But not, I have another project that use about the same icons. I could, like the other project, embedded my icons in this new project. But I thought about getting the icons from the first project. SO my question is. From project2, can I get icons embedded in project 1?? How

Thank you.