Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4599086
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T23:29:27+00:00 2026-05-21T23:29:27+00:00

I know that this must be incredibly easy – It’s unbelievable how long I

  • 0

I know that this must be incredibly easy – It’s unbelievable how long I have searched for an answer to this question based on how simple it is in VB6. I simply want to extract an Icon from an EXE File using Icon.ExtractAssociatedIcon, and then save this icon file to my hard drive.

So, here is what I have, and I will also show you what I have tried so you don’t think I’m being lazy.

OpenFileDialog ofd = new OpenFileDialog();
ofd.ShowDialog();

string s = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + @"\IconData.ico";

Icon ico = Icon.ExtractAssociatedIcon(ofd.FileName);
Bitmap bmp = ico.ToBitmap();

bmp.Save(s, System.Drawing.Imaging.ImageFormat.Icon);

The above code just makes a file called “IconData.ico” on my desktop which is 0 bytes in length. Again, I am sure this must be incredibly easy to do, but for the life of my I can’t figure it out.

Thank you!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T23:29:27+00:00Added an answer on May 21, 2026 at 11:29 pm

    You will get better results if you save the icon without first converting to a bitmap. This is because an “Icon” can contain multiple sizes whereas a bitmap is a single size chosen during the conversion.

    The Icon class does not have a save to file method, but it does have a save to FileStream method, so you can save it like this:

            string s = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + @"\IconData.ico";
            using (FileStream fs = new FileStream(s, FileMode.Create))
                ico.Save(fs);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this must be a simple question, but I know that in PHP
I know that this is a simple question for PHP guys but I don't
I'm really sorry. This must seem like an incredibly stupid question, but unless I
Hey, sorry for posting this here, I know that this question better suites into
Please, help me. I have a variable lang and i know that after this
I know that this is somewhat subjective, but I wonder if there is a
I know that this is subjective and all, but still, can you provide some
I know that C# supports covariance in arrays like this : object[] array =
I know that in JavaScript, creating a for loop like this: for(int i =
I know that in C#, if you write ~MyClass() , this basically translates to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.