ListIcon Column : size is useless
Posted: Tue Nov 01, 2016 9:54 am
Code Test
P.S : The Header and the Row Columns doesn't match
http://forums.spiderbasic.com/viewtopic.php?f=11&t=734
Code: Select all
ExamineDesktops()
OpenWindow(0, 0, 0, 800, 600, "", #PB_Window_ScreenCentered)
;Enter 0, 100, 200, ... The width of the column does not change
ListIconGadget(0, 0, 0, 800, 600, "Col 0", 100, #PB_ListIcon_CheckBoxes | #PB_ListIcon_FullRowSelect)
;AddGadgetColumn(0, 1, "Col 1", 200)
For i = 1 To 10
AddGadgetItem(0, -1, "Note " + i)
Next
http://forums.spiderbasic.com/viewtopic.php?f=11&t=734