CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Nov 2007
    Posts
    12

    Exclamation External bitmaps and buttons

    I'm loading in external bitmaps for my buttons to display. The bitmaps are being loaded fine. The buttons however are not displaying the bitmaps.

    The images are HANDLE's. I'm setting the button to display the bitmap with SendMessage(buttonHwnd, BM_SETIMAGE, (WPARAM)IMAGE_BITMAP, (LPARAM)bitmapHandle)

    I've also set the buttons style to BS_BITMAP.

    I don't want to use resources, I want to load the images at run time from external sources.

  2. #2
    Join Date
    May 2005
    Posts
    4,954

    Re: External bitmaps and buttons

    Please post your code.

    Cheers
    If a post helped you dont forget to "Rate This Post"

    My Article: Capturing Windows Regardless of Their Z-Order

    Cheers

  3. #3
    Join Date
    Nov 2007
    Posts
    12

    Re: External bitmaps and buttons

    I managed to work around it by using BS_OWNERDRAW, thanks anyways!

  4. #4
    Join Date
    Aug 2008
    Location
    India
    Posts
    186

    Unhappy Re: External bitmaps and buttons

    me 2 want to use external bitmap files and icons to show menu items and splash screens at run time....

    Please tell me how to do dis without doing any modifications in application resource.

    Please post a sample code for the same....

  5. #5
    Join Date
    Jun 2007
    Location
    MA-USA
    Posts
    247

    Re: External bitmaps and buttons

    I uploaded a demo some time ago.
    It demonstrates custom buttons with bitmaps.
    It does not use common controls classes.
    It does not use bitmap resource scripts.
    http://www.codeguru.com/forum/attach...chmentid=20817
    Play around with it and have some fun...

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