CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: DLL & bitmaps

  1. #1
    Guest

    DLL & bitmaps

    Help me!

    How can I create DLL that export and import bitmap resources


  2. #2
    Join Date
    Oct 1999
    Location
    WA
    Posts
    2,393

    Re: DLL & bitmaps

    Resource does not need to be exported, you can use
    hMod = LoadLibrary("dllname"), hBitmap=LoadBitmap(hMod, MAKEINTRESOURCE(resid)) to load it.


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