Righto. I'll see that gets updated.
------------------
Tom Hanlin
PowerBASIC Staff
Announcement
Collapse
No announcement yet.
Error in common control include file - a ListView wrapper function
Collapse
X
-
Error in common control include file - a ListView wrapper function
The code below has one error in the wrapper function:
Code:%LVM_SETBKCOLOR = (%LVM_FIRST + 1) FUNCTION ListView_SetBkColor(BYVAL hWnd AS LONG, clrBk AS LONG) AS LONG FUNCTION = SendMessage(hWnd, %LVM_SETBKCOLOR, 0, VARPTR(clrBk)) END FUNCTION
Code:FUNCTION = SendMessage(hWnd, %LVM_SETBKCOLOR, 0, VARPTR(clrBk))
Code:FUNCTION = SendMessage(hWnd, %LVM_SETBKCOLOR, 0, clrBk)
------------------
Tags: None
Leave a comment: