CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Mar 1999
    Posts
    1

    How do I extract resources from a VB exe?



    I've taken over development of a system that was partially complete. The consulting firm that performed the original development gave me an executable and a bunch of source code that does not compile. They included only *.bas and *.frm files, no project file, icons or bitmaps - nothing else. Litigation is pending, so they're not giving me anything else. In the mean time, I'm responsible for finishing this project.


    How can I extract the resources (bitmaps, icons) from the executable?

  2. #2
    Join Date
    Apr 1999
    Location
    Michigan, USA
    Posts
    115

    Re: How do I extract resources from a VB exe?



    There are resource viewers/extractors on the internet. This site's sister

    (MFC Programmer's Sourcebook) has a few posts pertaining to this.


    The problem you may run into are the items that are not stored as resources but

    as data in an ActiveX control's propertybag. These may not be accessable.


    Good luck.

  3. #3
    Guest

    Re: How do I extract resources from a VB exe?

    A viewer I use is MSVC++ 5.. open up the exe in VC using the option 'open as resource'!!

    - Alex ([email protected])


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured