Go to Prject Properties, select Make tab and in field
Icon choose form whos icon you would like to see in Exporer

Is this what you wanted?

Here's a few tips about icons and your exe size:

You can put default Windows icon on any form by going to
icon property and pressing Delete on your keyboard. This
icon is not saved in your exe

If you'r using one icon on two or more forms, use previus
tip to delete icons on Form2 and other forms except Form1.
Then place fallowing code to Form_Load on Form2 and other
forms:

me.icon=form1.icon

You can use this same thing if you have more than one
PictureBox with same picture, but code would be:

Picture2.Picture = Picture1.Picture
Picture3.Picture = Picture1.Picture
and so on

[Edited by ns-code on 09-03-2000 at 01:54 AM]