CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 2000
    Posts
    120

    Editing bitmap resources

    I have to modify from my application a bitmap resource from the resource of an executable module. I use FindResource(), LoadResource(), LockResource(), BeginUpdateResource(), UpdateResource and EndUpdateResource() API files but I can't modify the locked data. How can I do this and how can I display the data read?

    Thanks.



  2. #2
    Join Date
    Mar 2001
    Posts
    91

    Re: Editing bitmap resources

    Check out the Win32 Resource Library for Win95/98/Me/NT/2000/XP at

    http://www.geeworks.com/rsrc/

    This library provides APIs to modify Win32 resources on 95/98/Me/NT/2000/XP without ANY limitations. Supports BeginUpdateResource, UpdateResource & EditUpdateResource on Win9x platforms.



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