06-10-2008, 04:28 PM
Function LB_Add
To remove all
Macro
;/
function# hlb $text [itemdata]
;Adds an item to a list box control.
;Returns new item index. On error, returns a negative value.
int ni=SendMessageW(hlb LB_ADDSTRING 0 @text)
if(itemdata) SendMessage(hlb LB_SETITEMDATA ni itemdata)
ret ni
To remove all
Macro