Try doing this<br>
add a icon resource, say IDC_ICON1 in the resources.<br>
then in the code, do<br>
HICON hIcon = ::LoadIcon(AfxGetInstanceHandle(),MAKEINTRESOURCE(IDC_ICON1));<br>
then you have a button<br>
try doing<br>
pButton->SetIcon(hIcon);<br>
This should do it.<br>
If it does not, then please let me know if the button is on a Dialog os you have explicitly created a Button by calling CButton classes create<br>
<br>
<br>
All the best.<br>
Sun<br>
<br>