Hi,
How do I change listview between big and small icons?
Hi,
How do I change listview between big and small icons?
Hi,
In case anybody wants to do it too:
MENUITEM "Big Icons" Action SetWindowLong( ::oLv:hWnd, -16, nOR( WS_CHILD, WS_VISIBLE, WS_TABSTOP, LVS_ICON ) )
MENUITEM "Small Icons" Action SetWindowLong( ::oLv:hWnd, -16, nOR( WS_CHILD, WS_VISIBLE, WS_TABSTOP, LVS_SMALLICON ) )
MENUITEM "List" Action SetWindowLong( ::oLv:hWnd, -16, nOR( WS_CHILD, WS_VISIBLE, WS_TABSTOP, LVS_LIST ) )
As long as you have assigned image lists for big and small. I used the same one for both
Windows resized the icons
Alex,
Thanks for sharing that.
James
You need these defines
Alex
how I can Know the caption of each item ?