i am not trying to do a bitmap button im trying to set a bitmap image to a static control. Which i have done in the above example. I'm just asking what is wrong with it. So if theres anyone who has time and can help it would be much appreciated heres the code.
Quote
[rsrc.rc]
#include "C:\masm32\include\resource.h"
101 DIALOGEX 6, 6, 400, 290
STYLE DS_CENTER | WS_POPUP | WS_SYSMENU
CAPTION ""
FONT 8, "MS Sans Serif"
BEGIN
CONTROL "Exit", 103, STATIC, BS_BITMAP | SS_BLACKFRAME WS_CHILD | WS_VISIBLE | WS_TABSTOP, 45, 192, 90, 11
END
102 BITMAP MOVEABLE PURE LOADONCALL DISCARDABLE "1.bmp"
[test.asm]
.486
.model flat, stdcall
option casemap :none
include C:\masm32\include\windows.inc
include C:\masm32\include\kernel32.inc
include C:\masm32\include\user32.inc
include C:\masm32\include\gdi32.inc
includelib C:\masm32\lib\kernel32.lib
includelib C:\masm32\lib\user32.lib
includelib C:\masm32\lib\gdi32.lib
DlgProc PROTO :HWND, :UINT, :WPARAM,:LPARAM
Write PROTO :DWORD,:DWORD,:DWORD
.DATA
abouttext db "f1",0
aboutcap db "you pressed f1",0
abouttext2 db "f2",0
aboutcap2 db "you pressed f2",0
.DATA?
hInstance dd ?
statichwnd dd ?
bitmaphwnd dd ?
.CODE
start:
invoke GetModuleHandle,NULL
mov hInstance,eax
invoke DialogBoxParam,hInstance,101,NULL,addr DlgProc,NULL
invoke ExitProcess,0
DlgProc proc hWin:HWND,uMsg:UINT,wParam:WPARAM,lParam:LPARAM
cmp [uMsg],WM_INITDIALOG
jne @1
invoke SetTimer,hWin,1,90,0
invoke GetDlgItem,hWin,103
mov statichwnd,eax
invoke LoadBitmap,hInstance,102
mov bitmaphwnd,eax
invoke SendMessage,statichwnd,BM_SETIMAGE,0,bitmaphwnd
@1:
cmp [uMsg],WM_CLOSE
jne @2
invoke ExitProcess,0
@2:
cmp [uMsg],WM_COMMAND
jne @3
cmp [wParam],103
jne @end
invoke ExitProcess,0
@3:
cmp [uMsg],WM_TIMER
jne @4
invoke GetAsyncKeyState,VK_F1
cmp eax,0
jz @end
invoke MessageBox, NULL, addr abouttext, addr aboutcap, MB_ICONINFORMATION
@4:
invoke GetAsyncKeyState,VK_F2
cmp eax,0
jz @end
invoke MessageBox, NULL, addr abouttext2, addr aboutcap2, MB_ICONINFORMATION
@end:
xor eax,eax
ret
DlgProc endp
end start