tags:

views:

23

answers:

1

i have a dialog in which i made list control and made its ownerdraw true.but on draw funtion of dialog is not calling for list.what would be the reason

A: 

BS_OWNERDRAW is a message that redraws the control with linked bitmap.

Try this->RedrawWindow();

Redraws the whole window (and your list as well).

Sunscreen