Page 1 of 1

Broken drawing of ListIcon-GridlLines

Posted: Sun Mar 31, 2013 1:04 am
by va!n
In my project i am using ListIconGadgets with the attribute #PB_ListIcon_GridLines. Only the first vertical line from left will be shown correctly - all the other vertical lines between the other columns are not visible; while vertical lines are always visible! Example source from PB example works fine! Any idea why this happens and how to solve the problem? thanks

Using: PB 5.11 x64
System: Windows 8 Pro x64

Re: Broken drawing of ListIcon-GridlLines

Posted: Sun Mar 31, 2013 1:30 am
by IdeasVacuum
If you are coding for windows, try this to restore the lines display:

Code: Select all

SendMessage_(GadgetID(#MyListIcon), #LVM_SETEXTENDEDLISTVIEWSTYLE, #LVS_EX_GRIDLINES, #LVS_EX_GRIDLINES)

Re: Broken drawing of ListIcon-GridlLines

Posted: Sun Mar 31, 2013 1:44 am
by va!n
@IdeasVacuum:
Many thanks for your fast reply. SendMessage works fine and fix the problem!