How can I disable a push button,
so that it is drawn grayed-out and doesn't react
when the user click on it?
I tried to make a ownerdraw button, but there
something didn't work, so that the button wasn't
drawn at all ...
Can anyone help me, please? I'm a beginner
in win32 assembly
invoke EnableWindow, handleofpushbutton, FALSE
to disable (grey) it
invoke EnableWindow, handleofpushbutton, TURE
to enable it
Thomas