News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Remove "app" icon from MessageBox?

Started by Mark Jones, August 26, 2006, 07:54:54 PM

Previous topic - Next topic

asmfan

A few remarks by me

LOCAL wc:WNDCLASSEX
...
   mov edx,sizeof WNDCLASSEX
   mov ebx,eax
   mov ecx,edx
   lea edi,wc
   rep stosb

with what we fill the wc? xor eax,eax need to be there or at least xor al,al ;)
Russia is a weird place

drizz

yes i realized that myself last night, but when i went to edit it, i remebered that al will always be zero!
but for clarity, yes you are right  :wink

i updated the code and added:
invoke UnregisterClass,edi,wc.hInstance
The truth cannot be learned ... it can only be recognized.