Adding flags

Started by
1 comment, last by Zeblar Nagrim 22 years, 4 months ago
Is this correct? I want to check if the flag BS_OWNERDRAW is combined with the button style ''p_dwStyleFlags''. If it´s not I want to insert that style to the style flag DWORD. if((p_dwStyleFlags & BS_OWNERDRAW) == false) { p_dwStyleFlags = p_dwStyleFlags & BS_OWNERDRAW; }
Advertisement
Almost correct. You''ll have to use OR instead of AND when setting a bit in a number, like this

if((p_dwStyleFlags & BS_OWNERDRAW) == false)
{
p_dwStyleFlags = p_dwStyleFlags | BS_OWNERDRAW;
}
Thank you.

This topic is closed to new replies.

Advertisement